diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj index 8144e45d8a3..826cbaa3f91 100644 --- a/azure-cli2017.pyproj +++ b/azure-cli2017.pyproj @@ -201,6 +201,7 @@ + @@ -211,6 +212,7 @@ + @@ -1486,4 +1488,4 @@ - \ No newline at end of file + 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..2b46f24dcac 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,9 @@ 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, get_stretch_mode_types, + get_storage_authentication_allowed_values) from azure.mgmt.media.models import EncoderNamedPreset @@ -75,3 +77,23 @@ 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 + + +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 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..bbdf2063fb4 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,32 @@ 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: 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'] = """ + 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 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 +""" + helps['ams account storage'] = """ type: group short-summary: Manage storage for an Azure Media Services account. @@ -90,6 +116,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. @@ -482,6 +513,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. @@ -588,15 +624,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/_params.py b/src/azure-cli/azure/cli/command_modules/ams/_params.py index e5737587049..404eed5f01e 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,11 @@ 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, + 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, @@ -56,12 +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) + 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('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, @@ -81,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_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) c.argument('sp_name', name_arg_type, @@ -92,6 +100,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_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_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) c.argument('transform_name', name_arg_type, id_part='child_name_1', @@ -99,8 +113,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 +354,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. 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, 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 +366,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('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. 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.') 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..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,4 +59,21 @@ def get_media_type(): def get_encoding_types(): - return ['Basic', 'None', 'Standard'] + return ['Premium1080p', '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'] + + +def get_stretch_mode_types(): + return ['None', 'AutoSize', 'AutoFit'] + + +def get_storage_authentication_allowed_values(): + 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 79ab866e2c6..3b0a9e2b5b0 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,15 @@ 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', + 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', @@ -201,6 +209,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/account.py b/src/azure-cli/azure/cli/command_modules/ams/operations/account.py index 362ae718814..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 @@ -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,12 @@ 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, + 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, + location, assign_identity, tags) @@ -55,11 +56,21 @@ def remove_mediaservice_secondary_storage(client, resource_group_name, account_n ams.tags) +def set_mediaservice_trusted_storage(client, resource_group_name, account_name, + storage_auth): + ams = client.get(resource_group_name, account_name) + media_service = MediaService(location=ams.location, storage_accounts=ams.storage_accounts, + storage_authentication=storage_auth) + + 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, assign_identity=False, tags=None): - - media_service = MediaService(location=location, storage_accounts=storage_accounts, tags=tags) + identity = 'SystemAssigned' if assign_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 new file mode 100644 index 00000000000..cb7142d8073 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/ams/operations/encryption.py @@ -0,0 +1,39 @@ +# -------------------------------------------------------------------------------------------- +# 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 + +from azure.cli.core.azclierror import BadRequestError +from azure.mgmt.media.models import (MediaService, AccountEncryption, KeyVaultProperties, + ApiErrorException) + + +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) + return account_info.encryption + + +def set_encryption(client, resource_group_name, account_name, key_type=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_id) + else: + key_vault_props = None + 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) + + return client.create_or_update(resource_group_name, account_name, media_service) + 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) 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..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 @@ -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, - 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): + 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, + transcription_lang=None, use_static_hostname=False, 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 transcription_lang: + transcriptions = [{'language': transcription_lang}] + live_event_input = LiveEventInput(streaming_protocol=LiveEventInputProtocol(streaming_protocol), access_token=access_token, key_frame_interval_duration=key_frame_interval_duration, @@ -43,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), - 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=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) @@ -92,6 +99,15 @@ 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/mru.py b/src/azure-cli/azure/cli/command_modules/ams/operations/mru.py index f3ce20616c1..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 @@ -10,18 +10,33 @@ 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', 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 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) -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 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/operations/transform.py b/src/azure-cli/azure/cli/command_modules/ams/operations/transform.py index d248eb47e52..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, audio_language=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, audio_language, - 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, audio_language=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, audio_language, - 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, audio_language, 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) @@ -51,8 +53,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/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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:19:23 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' 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.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/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 + - Thu, 21 Jan 2021 00:19:23 GMT expires: - '-1' odata-version: @@ -120,7 +122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' 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.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/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 + - Thu, 21 Jan 2021 00:19:24 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.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/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 + - 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 ade08bed912..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:19:22 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 @@ -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.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=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 + - Thu, 21 Jan 2021 00:19:23 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.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/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 + - Thu, 21 Jan 2021 00:19:24 GMT expires: - '-1' odata-version: @@ -171,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' 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.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=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 + - Thu, 21 Jan 2021 00:19:24 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.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/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 + - Thu, 21 Jan 2021 00:19:25 GMT expires: - '-1' odata-version: @@ -297,7 +299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' status: code: 201 message: Created @@ -316,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.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=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 + 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 @@ -348,7 +350,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:57 GMT + - Thu, 21 Jan 2021 00:19:26 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.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/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 + - Thu, 21 Jan 2021 00:19:26 GMT expires: - '-1' pragma: @@ -411,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' 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.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=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 + - 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 dd6a5137fab..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:19:23 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.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/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 + - Thu, 21 Jan 2021 00:19:24 GMT expires: - '-1' odata-version: @@ -119,7 +121,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -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.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/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 + - Thu, 21 Jan 2021 00:19:25 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.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/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 + - Thu, 21 Jan 2021 00:19:27 GMT expires: - '-1' odata-version: @@ -247,7 +249,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_ams_asset.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_asset.yaml index 382f5d1a20e..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 @@ -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.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/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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:31:04 GMT expires: - '-1' odata-version: @@ -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.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/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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:31:05 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.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/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 - \ {\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}" + 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}" 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 + - Thu, 21 Jan 2021 00:31:07 GMT expires: - '-1' odata-version: @@ -167,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 201 message: Created @@ -191,25 +197,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.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/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\":\"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: - - Fri, 25 Sep 2020 21:41:31 GMT + - Thu, 21 Jan 2021 00:31:11 GMT expires: - '-1' odata-version: @@ -242,25 +248,25 @@ 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.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/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\":\"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: - - Fri, 25 Sep 2020 21:41:32 GMT + - Thu, 21 Jan 2021 00:31:12 GMT expires: - '-1' odata-version: @@ -300,25 +306,25 @@ 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.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/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\":\"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: - - Fri, 25 Sep 2020 21:41:33 GMT + - Thu, 21 Jan 2021 00:31:14 GMT expires: - '-1' odata-version: @@ -355,25 +361,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.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/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\":\"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: - - Fri, 25 Sep 2020 21:41:34 GMT + - Thu, 21 Jan 2021 00:31:15 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.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/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 + - Thu, 21 Jan 2021 00:31:17 GMT expires: - '-1' pragma: @@ -456,25 +462,25 @@ 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.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/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\":\"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: - - Fri, 25 Sep 2020 21:41:36 GMT + - Thu, 21 Jan 2021 00:31:17 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.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/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 + - 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 5f75d0841b0..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:50 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:51 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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:52 GMT expires: - '-1' odata-version: @@ -163,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' 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.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/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\":\"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: - no-cache content-length: - - '613' + - '611' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:26 GMT + - Thu, 21 Jan 2021 00:26:55 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.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/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 + - Thu, 21 Jan 2021 00:26:57 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:52 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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:52 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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:54 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,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.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/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\":\"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: @@ -205,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:22 GMT + - Thu, 21 Jan 2021 00:26:56 GMT expires: - '-1' odata-version: @@ -219,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 201 message: Created @@ -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.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/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 + - Thu, 21 Jan 2021 00:26:58 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.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/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 + - Thu, 21 Jan 2021 00:27:01 GMT expires: - '-1' odata-version: @@ -325,7 +331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' 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.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/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 + - Thu, 21 Jan 2021 00:27:02 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.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/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 + - Thu, 21 Jan 2021 00:27:05 GMT expires: - '-1' odata-version: @@ -433,7 +439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' 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.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/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 + - Thu, 21 Jan 2021 00:27:05 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.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/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 + - Thu, 21 Jan 2021 00:27:08 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.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/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 + - 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 5d9e4eabe1d..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:51 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 @@ -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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:53 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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:55 GMT expires: - '-1' odata-version: @@ -164,7 +170,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' 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.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/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\":\"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: @@ -206,7 +212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:27 GMT + - Thu, 21 Jan 2021 00:26:57 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.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/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 + - Thu, 21 Jan 2021 00:27:01 GMT expires: - '-1' odata-version: @@ -287,7 +293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' 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.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/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 + - Thu, 21 Jan 2021 00:27:03 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.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/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 + - 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 cc69b6a5028..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:49 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' 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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:50 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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:26:52 GMT expires: - '-1' odata-version: @@ -163,7 +169,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1197' 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.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/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\":\"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: @@ -205,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:25 GMT + - Thu, 21 Jan 2021 00:26:54 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.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/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 + - Thu, 21 Jan 2021 00:26:57 GMT expires: - '-1' odata-version: @@ -286,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' 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.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/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 + - Thu, 21 Jan 2021 00:26:59 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.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/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 + - Thu, 21 Jan 2021 00:27:00 GMT expires: - '-1' odata-version: @@ -414,7 +420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '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 612095bdef0..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:30:16 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' 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.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/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\":\"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: @@ -93,7 +95,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:53 GMT + - Thu, 21 Jan 2021 00:30:20 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.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/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 + - 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 b52ae65b85d..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:29:58 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 @@ -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.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/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\":\"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: - no-cache content-length: - - '588' + - '590' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:25 GMT + - Thu, 21 Jan 2021 00:30:00 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-21T15:30:00.094245Z"}' 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.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=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-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: - - '447' + - '445' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:26 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 5196d2fc88d..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:31:39 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.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/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\":\"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: @@ -94,7 +96,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:02 GMT + - Thu, 21 Jan 2021 00:31:42 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.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/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-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: @@ -149,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:04 GMT + - Thu, 21 Jan 2021 00:31:43 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.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=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-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: - - '292' + - '290' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:06 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 f54415665bf..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 @@ -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.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=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\":\"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 ]\r\n }\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-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: - no-cache content-length: - - '663' + - '1023' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:54 GMT + - Tue, 23 Feb 2021 18:38:38 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -75,25 +77,25 @@ 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.18.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 - 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: - - Fri, 25 Sep 2020 21:39:55 GMT + - Tue, 23 Feb 2021 18:38:38 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.18.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 + - Tue, 23 Feb 2021 18:38:39 GMT expires: - '-1' odata-version: @@ -192,25 +194,25 @@ 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.18.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 - 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: - - Fri, 25 Sep 2020 21:39:57 GMT + - Tue, 23 Feb 2021 18:38:40 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.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?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 + - 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 851c67b8ebf..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 @@ -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,36 @@ 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 --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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + 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=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\":\"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 ]\r\n }\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-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: - - '666' + - '1139' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:53 GMT + - Tue, 23 Feb 2021 18:38:38 GMT expires: - '-1' odata-version: @@ -52,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -71,26 +74,29 @@ 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.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?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\":\"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 ]\r\n }\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-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: - - '666' + - '1139' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:54 GMT + - Tue, 23 Feb 2021 18:38:38 GMT expires: - '-1' odata-version: @@ -113,7 +119,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 +131,36 @@ 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.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=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\":\"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 ]\r\n }\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-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: - - '699' + - '1172' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:55 GMT + - Tue, 23 Feb 2021 18:38:41 GMT expires: - '-1' odata-version: @@ -161,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: - - '1193' + - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -183,27 +197,31 @@ 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.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?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\":\"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 ]\r\n }\r\n }\r\n ]\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-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: - - '767' + - '1264' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:56 GMT + - Tue, 23 Feb 2021 18:38:42 GMT expires: - '-1' odata-version: @@ -238,26 +256,29 @@ 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.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?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\":\"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 ]\r\n }\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-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: - - '699' + - '1172' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:39:57 GMT + - Tue, 23 Feb 2021 18:38:43 GMT expires: - '-1' odata-version: @@ -294,11 +315,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.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?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 +329,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:39:59 GMT + - Tue, 23 Feb 2021 18:38:44 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..5d8e9789733 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_encryption_set_show.yaml @@ -0,0 +1,791 @@ +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 --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 + 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\":\"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-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: + - no-cache + content-length: + - '1139' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 23 Feb 2021 18:41:47 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/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-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-23T18:40:42Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '431' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Feb 2021 18:41:48 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":"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":"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 + 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: + - '16898' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Tue, 23 Feb 2021 18:41:48 GMT + duration: + - '564138' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - Hdntwjzps/WyG2RJNaiHocFk5JY1BOzRhjElKs8ZEEE= + ocp-aad-session-key: + - Y3FnzVIBMX6nnE5m1o2mXmbnTnK3jXltJdlUnPHsv-tmOy2RqSoJukIruYrSf7UAvQx_2Agl0ZMLn5lsBtFbiQCI-7JsG-9IcoN1oM-4I9jGMU7fRwKv0qeRZBzPciW6.dkYd7xjofmBGODPinSpnT3UjiKwJLTLrCyJ2qtYeGsE + pragma: + - no-cache + request-id: + - 79ad2799-b95a-48cb-9acf-5286b1ad3642 + 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.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"]}}],"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: + - Tue, 23 Feb 2021 18:41:49 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.0.104.232 + 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: + - Tue, 23 Feb 2021 18:41:50 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=131.107.174.205;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - centralus + x-ms-keyvault-service-version: + - 1.2.164.2 + 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/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 + content-length: + - '661' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Feb 2021 18:41:51 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=131.107.174.205;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - centralus + x-ms-keyvault-service-version: + - 1.2.164.2 + 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.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: + 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: + - Tue, 23 Feb 2021 18:41:51 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.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: + 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: + - Tue, 23 Feb 2021 18:41:51 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.0.104.232 + 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": "6f4545fa-025e-4cdc-8fa5-97111d52ac04", + "permissions": {"keys": ["get", "wrapKey", "unwrapKey"]}}], "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.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":"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 + content-length: + - '1344' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 23 Feb 2021 18:41:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.0.104.232 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams account encryption set + Connection: + - keep-alive + ParameterSetName: + - -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 + 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\":\"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-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: + - no-cache + content-length: + - '1139' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 23 Feb 2021 18:41: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: '{"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/cc0e509c280449b990ca6aee5ceec3e8"}}}, + "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-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 + 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\":\"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/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: + - no-cache + content-length: + - '1425' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 23 Feb 2021 18:41: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 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- 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.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/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\":\"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/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: + - no-cache + content-length: + - '1425' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 23 Feb 2021 18:41: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 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.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/ams000004?api-version=2020-05-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 23 Feb 2021 18:42:00 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.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: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 23 Feb 2021 18:42:02 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.0.104.232 + 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:36:18 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 User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + 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/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\":\"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: - - '530' + - '528' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:33 GMT + - Thu, 21 Jan 2021 00:36:21 GMT expires: - '-1' odata-version: @@ -131,25 +133,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.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/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\":\"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: - - Fri, 25 Sep 2020 21:41:35 GMT + - Thu, 21 Jan 2021 00:36:23 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.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/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-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}" @@ -207,7 +209,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:36 GMT + - Thu, 21 Jan 2021 00:36:25 GMT expires: - '-1' odata-version: @@ -221,7 +223,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -247,17 +249,18 @@ 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.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/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-21T00:36:27.2331133Z\",\"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 + \ ],\"label\":\"someLabel\",\"inputDefinitions\":[\r\n \r\n ],\"assetName\":\"asset000004\"\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}" @@ -265,11 +268,11 @@ interactions: cache-control: - no-cache content-length: - - '849' + - '892' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:38 GMT + - Thu, 21 Jan 2021 00:36:27 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.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/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-21T00:36:27.233Z\",\"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-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 - \ }\r\n }\r\n}" + \ },\"startTime\":\"2021-01-21T00:36:28.28Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '841' + - '965' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:39 GMT + - Thu, 21 Jan 2021 00:36:29 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.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/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 + - Thu, 21 Jan 2021 00:36:30 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.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/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-21T00:36:27.233Z\",\"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-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 - \ }\r\n }\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: - - '925' + - '1057' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:41 GMT + - Thu, 21 Jan 2021 00:36:31 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.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/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-21T00:36:27.233Z\",\"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-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 - \ }\r\n }\r\n}" + \ },\"startTime\":\"2021-01-21T00:36:28.28Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '841' + - '965' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:42 GMT + - Thu, 21 Jan 2021 00:36:32 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.18.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-21T00:36:27.233Z\",\"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-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 - \ }\r\n }\r\n}" + \ },\"startTime\":\"2021-01-21T00:36:28.28Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '875' + - '1000' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:44 GMT + - Thu, 21 Jan 2021 00:36:35 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.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/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 + - Thu, 21 Jan 2021 00:36:36 GMT expires: - '-1' pragma: @@ -617,7 +624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -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.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/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-21T00:36:27.233Z\",\"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-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 - \ }\r\n }\r\n}" + \ },\"startTime\":\"2021-01-21T00:36:28.28Z\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '877' + - '994' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:47 GMT + - Thu, 21 Jan 2021 00:36:37 GMT expires: - '-1' odata-version: @@ -695,65 +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 - 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 - 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: - - Fri, 25 Sep 2020 21:41:48 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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + 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/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 +717,7 @@ interactions: content-length: - '0' date: - - Fri, 25 Sep 2020 21:41:54 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 e6f3fe8ec6b..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:43:18 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 @@ -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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:43:18 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.18.0 accept-language: - en-US method: GET @@ -145,19 +149,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:30 GMT + - Thu, 21 Jan 2021 00:43:19 GMT duration: - - '1333289' + - '852742' expires: - '-1' ocp-aad-diagnostics-server-name: - - MMNpM+Iz2yBvvf+Oc4D7IA0nZD5jNPjSkaGpHqkyRbc= + - WgqwaA7uWY22D4dquXQHPacPhyKRQEER6e6+ocAnyzw= ocp-aad-session-key: - - -1P8PDbanOR6HfUZOxejsfcUIn605zE6lr1Cwo-uicvF93853AJEG0DQccC4o4HbiQB7RwcbuLLPpezGVuTFsGXUEfW6c4ystFBYAeSOsyeoIuDKuXKM3oOGqmPLqfIaITI2sgh4CMRWzG0IpUwd8kLUGnuqt3Mi4_fuSW__Ukc.6aLgDhn_zKQAj3PWa_klbkZlNJ6lyLiXHk2GYEAV3hs + - _Iz9CJRcHD30eXBqmCaDuIsrkhQvjEqYbLLjQ3FiYwVwOjnG50ypjbwnS7zj50PMAac7dU89hHwj2leOjScedFEp_YDG11fMuiYHHKgiXbBZVTtbYx2f_NeN22kYjTms.zqpXg-qAGOSXl0qzh2bI1CxQBmDLNxWVcWEySK5Qz5o pragma: - no-cache request-id: - - 19be0893-72b7-4cb9-9543-0e1539e64d5f + - 1af4865d-060f-43f1-af63-5504f32640f2 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-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: @@ -194,7 +198,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.18.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": "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/e84d9990-fa50-4101-977b-4361d93a8ad0/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/e84d9990-fa50-4101-977b-4361d93a8ad0/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": "799cfa53-9d45-437e-b4ca-45c1c3b6b41c", + 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": "2021-09-25T21:43:30.703511Z", "keyId": - "88888888-0000-0000-0000-000000000001", "startDate": "2020-09-25T21:43:30.703511Z", + [{"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": @@ -241,21 +245,21 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:30 GMT + - Thu, 21 Jan 2021 00:43:20 GMT duration: - - '2926865' + - '6201476' 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/07cff196-0148-432f-b8b3-ddfbd8167fa4/Microsoft.DirectoryServices.Application ocp-aad-diagnostics-server-name: - - T8XZkzrl2aupEbCD6UYjY32Rv0txL1m39kZkE588G30= + - Y+zD48Ehiz4O0zsLgVLhmty83vCQXyE4/pJnc8xhwMg= ocp-aad-session-key: - - P-8kpw1kNYlHjwomqvj7Bg1gQvlqp_d0ric_zvVAX-mRbUgbeFpi7clsh0NWOU-GSqDUn-wZfYXUZx-sUhEfkJBegiYsZFYZlZz5_E2JwecpCcgxrxaXxl_DX3aPgpU98xx6sMTMyi5V7UrvNXw41oMifNCL2GeCNSjv5XeLwbI.f9YH9reUs-bxHnlOZpL3vRCWm3AqAd16NA_MlRLD2SY + - VkUrOSY4OD5Q3SZVemy3VbGfSZuTYGGExer2NHYd6T42EfcsU9FozcGvVG6kdezg5otbkQXPPBL5fveS4oYyIUrFRnTDt9B6JYEgDntQkq5JXSyeppsXHOoUeu0qqMEWrRf0kOQ_rWCR6W-I3mZyqyHGzRM57w645u5-OsQYcgw.sbVE8Ps_BYoxpmwxxAHHN-_rM34H0-DjdpLXJXFoE0E pragma: - no-cache request-id: - - a88b8c2b-6f15-46ac-b89e-264945c0dc2e + - 9cd0fe99-8304-469d-adcb-383a72cbebf0 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": "44f6923a-f2cf-43c4-8dc6-b46bc5e9b857"}' 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.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":"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":"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":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","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":["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":["44f6923a-f2cf-43c4-8dc6-b46bc5e9b857","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 + - Thu, 21 Jan 2021 00:43:20 GMT duration: - - '1901471' + - '3628073' 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/4b80044f-a3dc-4a89-be8d-97d29fe9da5c/Microsoft.DirectoryServices.ServicePrincipal ocp-aad-diagnostics-server-name: - - YPZ+mmPL+OBXd1POeb7UT5BEZEjGrQEKHfYavB10Rao= + - pH09e0MAr+szgnSxhvrjJJGK/1HRjD2NsdZMgTOMFK0= ocp-aad-session-key: - - G13W0IVTYfh0EBRenXt4wJs8nzYm0l1btrAOT9CWoRtczNPTuJg-kiqsMu8ByUlL_5LllT7Cb62sb3JBXJ1wMkYND1-zhS7dC3tOU2CBqat2HSVmvmiWgIO7OOUFNe-pBUMrWHDUIBPD5rV08XnTxjbvbZ-c7BAWBbwsRcnz2g0.PxGOrAo9YFzBOi19AMmhTAXEXqnJOXj8UELhx_c61Dk + - bpJVJ_-rplmnZ289Ohk6lqTK_4D4LedY68Yd9VHfILvMtS0PhuxSxfDV2Qj9TCEe_YPUsIRwNG0UP8JvuV7F0rVJF2h3wsvGs8ozEVjXvnzSphtYve9S-rusmTubpPtR3C3qBVF1SHx85WA9_RxxKxyX7EiTnfvcsvxIUxeOvmU.btpTiISDafaL5G8lvTI-9GyNRTXGc9MkXMuSS6ti3Nw pragma: - no-cache request-id: - - 50a904c9-011f-4de3-8e45-4108a5884407 + - 35ebe196-855d-4c55-8dc4-844ce6b54a9a 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.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%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%274b80044f-a3dc-4a89-be8d-97d29fe9da5c%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 + - Thu, 21 Jan 2021 00:43:20 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.18.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 + - Thu, 21 Jan 2021 00:43:21 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": "4b80044f-a3dc-4a89-be8d-97d29fe9da5c"}}' 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.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 14bf1155ba8440d8a0e7f84669d447bc + string: '{"error":{"code":"PrincipalNotFound","message":"Principal 4b80044fa3dc4a89be8d97d29fe9da5c 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 + - Thu, 21 Jan 2021 00:43:22 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.18.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 + - Thu, 21 Jan 2021 00:43:27 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": "4b80044f-a3dc-4a89-be8d-97d29fe9da5c"}}' headers: Accept: - application/json @@ -568,14 +572,120 @@ 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.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: '{"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 4b80044fa3dc4a89be8d97d29fe9da5c + 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: + - Thu, 21 Jan 2021 00:43:27 GMT + expires: + - '-1' + pragma: + - no-cache + set-cookie: + - x-ms-gateway-slice=Production; path=/; secure; samesite=none; httponly + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 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.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/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: + - Thu, 21 Jan 2021 00:43:33 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": "4b80044f-a3dc-4a89-be8d-97d29fe9da5c"}}' + 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.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: '{"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 @@ -584,7 +694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:39 GMT + - Thu, 21 Jan 2021 00:43:35 GMT expires: - '-1' pragma: @@ -615,26 +725,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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:43:35 GMT expires: - '-1' odata-version: @@ -669,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.12.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":"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":"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":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","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","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","44f6923a-f2cf-43c4-8dc6-b46bc5e9b857"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -693,19 +805,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Thu, 21 Jan 2021 00:43:35 GMT duration: - - '634639' + - '582516' expires: - '-1' ocp-aad-diagnostics-server-name: - - sYypgmyv9KLBQcszlFTAA6Klt8R5H4hoowy5e3DKXFI= + - CNP5kG643VEgWAuQgd9JNUJQ6e3AstHM9HY6G3AdeCY= ocp-aad-session-key: - - yFoOzY-OwBBd9N1a6P8ET6ERSq3Y-TRmlmG0ghprkFrO9HqytT05OirLaVi8_BvaOZN1shIroDaBZ5JlgPrbwAt0lS3GtNMsYh7Oby-5Q8YXSRUBSQFJF0KP_8tumdBXc9lZxkmfFkNuNwdngiEMxvWlAc_weGePa6PS6jxWqZo.URx-nDpPGqUu3JqE9fBk6Jy-y68zjmQBsyqgHdkK-OQ + - 3rufLj41nXuekfaPjbqwvZDVwQHw2vTq7otpJY453HMglwENnDAy7H4Jglzwbm58_lH62YpEHnt9eWX4nzQ483ERqhaS-8oWwC1CpUCUG9EYtZ3_rdJSTpw4B4PPyKVCPqaug6AdYm-L3S0xO7Jd2qWM9CodHKbaS9p2DVcEdWo.t_l5sJ-vqFJvkKxkGek2oclH6RGHhK6dEBC4lOiuvh8 pragma: - no-cache request-id: - - 5f4d7bcf-5a03-4dfe-bd2b-f9596602023d + - 85740125-728a-418f-ad0b-fc21ee35d98a strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -734,18 +846,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.18.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%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":"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":"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":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","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":"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-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: - '*' @@ -758,19 +870,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Thu, 21 Jan 2021 00:43:36 GMT duration: - - '705404' + - '565776' expires: - '-1' ocp-aad-diagnostics-server-name: - - Jyamh40I/riKJflXwk3LHmaI3Lsq6osSe+/rd7Qerq0= + - ISbjmcjIryw8imO8hLdMu3pPCFK4JbNjsBFNQwzSQzU= ocp-aad-session-key: - - R2fTg1MdVMKmTDG-6XTRJkosARjVE7PAEgJDQlEU84-XOUHIM2WYUzpHdlbXDJ7Sh4VZ1nBII897p0zXIimXgtjP7JJUaAlIDcSGaeW8uH6_Q6GBeNhbaZ1CoVu_WbTSqlDSDC4SvCaqYdytwJbOIBtde-8YHxS-jrXaweDa1N0.f1C2972PMT-YGciIyP_goFkUZNz3537sWBD08Mfx59Y + - 2LF6r5sXlYZLyAdFi7g49Zk4-bDzakkijwIrdfQbDYNCx1cZUuyV_uP6bdDE4SzRbSgzmP2ixql1LfIkjRBTRg92QFBhyZdaexXkNyZYh4ZnlrM9ySltmkkBbf1eRig05DNdt8enCdjpX3rqg1AacWrmcMKCDvboUkaVNrjIh44.i-uwmw9Vur2OE4Xwrst36vkGnoTRCygjqQif_PqVReo pragma: - no-cache request-id: - - b5763eaf-d74a-4e41-aaa6-a27bef0e6958 + - 5aeb1d99-e439-40bc-8a83-eb1cb3186cd9 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -799,14 +911,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-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.12.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/e84d9990-fa50-4101-977b-4361d93a8ad0/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":"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-21T00:43:20.870152Z","keyId":"88888888-0000-0000-0000-000000000001","startDate":"2021-01-21T00:43:20.870152Z","value":null}]}' headers: access-control-allow-origin: - '*' @@ -819,19 +931,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Thu, 21 Jan 2021 00:43:36 GMT duration: - - '794122' + - '656823' expires: - '-1' ocp-aad-diagnostics-server-name: - - XIO7CE0QfI29gkv/rclFvwZFGDvkYaGDXU34KDUMF3Q= + - tqsvrwCmDhrCSNHu2t6CdV0LI4CjAgREZGXRcEu5W18= ocp-aad-session-key: - - wuBsgysIaDuuZf_LH71ONvUkJ2PCY2jEtkuoo2DScMGUnkcCGVIQ90EeZpcy3bBWH4qoCwZAq9ZZ7PGeEFGRZ16jHMDcZlk_x9uzuWj6KKlcAA9IxlsYXqpTqdbg_8LAJV2zhUq0i_lfLUb1LUsgAdnDHoWVEqHaRG9Q4R85ty8.1XkZjcSMHe0OHraHk6ILvKoH3d2A2sVlT_Lw_4SxJn8 + - _h1vYcnBZHJuP2jjAJukjto5APl70jgE_dEvylKShl9eAR2C72m217YXfvTZEUYS-YLvU3vqNhIDfZjCRUhDDukz4jHmFy6GKKLAXLAmWO3Wzc6irMVjh40La2LGQwtkBGX5NkclsBeNFCOMDAh9_IzY8VPgbrxRlaW-46WVMgQ.jvfDeMObug0ELq2hBVoTufMkvdO0cXLU2E0SF-fGezc pragma: - no-cache request-id: - - a4a973f0-f967-49ab-afb0-d64b98901dc1 + - fe6b4cc1-ed41-4584-8acd-b206959f78de strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -846,9 +958,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-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: @@ -867,11 +979,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-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.12.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/e84d9990-fa50-4101-977b-4361d93a8ad0/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: '' @@ -881,19 +993,19 @@ interactions: cache-control: - no-cache date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Thu, 21 Jan 2021 00:43:37 GMT duration: - - '2482878' + - '3485783' expires: - '-1' ocp-aad-diagnostics-server-name: - - susOkr8YvnkWhpfwvEOXpfZ/acdphRpz4tl/Fe8Bm3M= + - VRduinh48wLsWX4gv475GCgG1fPJPOTtSGWFaOBDTQM= ocp-aad-session-key: - - 40TXkV8V5B4FIFjaN_zADpZ1diyUegXq_F7xa4LeLZ5hh2loCXxDzxf5AQfuHeTvm9eVM2J-rFU4RiKK7Nb41P51-_19Yz4a8WXXHOua4JR3NgIGoNJE6T8NEYSFbB6-jd_TxzFAQO6PdUhv6AN52cGHV6nma9_yX6QgU61ukKY.CMD3WaITuEhOFtM0nCQonDJPzofqtVUKj2HEN-dD5XQ + - DT9KkEaNEYAHqjwySo4DP8MVZE2WQ0pQOajisEdt9KB6KxrUQpjNRfS2ujo-NvzrPSdqqiDwduLglHwibOyiN3Jp4hpH0zWxNMHmioKztqCqfdbspBnuSwc3FyQMo4xrp0MYWbLrOIdMHTyau6mEfePpBsuva42SSfF_mJaFamU.-r8tzbpQKMCfjzR7GUPHnOFiMfC8yjkp5TYPC7VfLzw pragma: - no-cache request-id: - - 0486d748-d85b-4814-8914-d18cf3da57fa + - 248bf20c-61ad-4849-82ca-c0952da167f3 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -922,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.12.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%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%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":"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":"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 @@ -938,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Thu, 21 Jan 2021 00:43:36 GMT expires: - '-1' pragma: @@ -973,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.12.0 + azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.18.0 accept-language: - en-US method: GET @@ -1019,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 @@ -1047,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 @@ -1082,13 +1194,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 +1270,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 +1292,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 +1310,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 +1399,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 @@ -1314,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 @@ -1335,17 +1447,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 +1466,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 +1513,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 +1580,97 @@ 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\"},{\"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: - - '236530' + - '276317' content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Thu, 21 Jan 2021 00:43:37 GMT expires: - '-1' pragma: @@ -1495,7 +1689,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["14bf1155-ba84-40d8-a0e7-f84669d447bc"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["4b80044f-a3dc-4a89-be8d-97d29fe9da5c"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -1514,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.12.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":"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":"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":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","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","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","44f6923a-f2cf-43c4-8dc6-b46bc5e9b857"],"servicePrincipalType":"Application","signInAudience":"AzureADMyOrg","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -1538,19 +1732,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:40 GMT + - Thu, 21 Jan 2021 00:43:36 GMT duration: - - '621198' + - '600832' expires: - '-1' ocp-aad-diagnostics-server-name: - - W2nyaq+TwzM/o5DdpL8cVakCYq3cRJBcbcojRgdK2AY= + - gs8C01f5KRN9nNLnTmZX5CWrEWq6NpXoaIB755uhVTs= ocp-aad-session-key: - - MZ1vl5BHZZIHBCBZuYL3rc88WUhapn4OHYmNmnz7nHh2XRfvyG_e64NsLkxoiseRRPZS33URaFTHuYUOJNMj0eQlU8YQbpkh2YZAZd25cPjI0FqMoUkYhJO3rS8tssa4JQ9xn_6-PqAXww9MkQLbcVETk2xuLXQBCXiybyp7_kw.iyU7uERCs9OYV4c3KWwCFaZ7ajZFCqGe0iQTVstKfR0 + - dTiJtmMxp1lMxshiB2f8yGCraLzlNusAFrCng6VNM_TuuKXUTpCI4iOLhZmFjTQRM0IwMFu1LBBd2gnZL1gnOYcmYjhJ8k2HVMmcz5E2sf9TgA4pP8jwcoBHzPYpjknP25lycHF9wHn-NpW9uFdcMuFH7BNpvF5S2LU09fLFpKM.4jUzMlYDOGsxbadHgSk-j7XvXzfWun9WTtzR2ZIJUCs pragma: - no-cache request-id: - - c96befe1-93a3-46b2-8465-2dd95d545241 + - 9913608e-1e23-4df1-901e-4d4a040dcabf strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1579,18 +1773,18 @@ 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.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":"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":"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":"799cfa53-9d45-437e-b4ca-45c1c3b6b41c","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":"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-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: - '*' @@ -1603,19 +1797,19 @@ interactions: dataserviceversion: - 3.0; date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Thu, 21 Jan 2021 00:43:37 GMT duration: - - '924021' + - '549380' expires: - '-1' ocp-aad-diagnostics-server-name: - - oZrPe4FIKjo1GYhrO8IKL/xFEqlXASoSuWNSbfUwOuY= + - lmh4uV9dRst8pgCGYL7c2IeXRHfrviQ1EsDxe5f7RfI= ocp-aad-session-key: - - DacYVUXagt1hArDH44QvB3-fix1Vh8u50IpjPCMJAzLb7bt6CWbFHSfZwhMzgxT0SFsAN2jaWwZAZA9J_nEXrhNMOYQ--VzMIkdx7Lf-P_C_7h04U4KvnsUmd7NAuTIM3Y1DSzI0KkSZoXFJHlU_v0PKirwvzzU4gewMuZPQ9rc.jBk-8ET3Aq39eo3dcd0_-eWuJNz198S3Ww4L53rLzMg + - WjQy2_UBUo3wbh4F_N-jSrl6Ii8joGm9yaw69HHWJ42VjiqRzJFHucdCi3jjvtClMmXHpZNGVcPpkJWnsxkjh6VEUKo7Ziks3s3GdVmYtJkOOQharnluz5E9pBe2JrqhoKU72YnUAmoPVXGwMlPH5jKyQiosmg8LEHkw_6EZW1w.sz-rZizZyzFb9yOaMCCZnb3AYxUycLgO7RnVIf21WD4 pragma: - no-cache request-id: - - 75ab315f-3b04-401c-8a23-97def352c668 + - d801f2c7-90e9-4907-8914-2be5c313be84 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -1646,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.12.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/e84d9990-fa50-4101-977b-4361d93a8ad0?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: '' @@ -1660,19 +1854,19 @@ interactions: cache-control: - no-cache date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Thu, 21 Jan 2021 00:43:38 GMT duration: - - '1799482' + - '3415772' expires: - '-1' ocp-aad-diagnostics-server-name: - - IAJInqPI4lKNkkjmRxlvRCo0yCEDsc0J29jSC990RR4= + - IzxFlPMFduzqKtZga1KDCE1a7182L8epCq32WdJKL+E= ocp-aad-session-key: - - fjExVFolJFWSFgvZ8w3bEa78KnnCCTHMQf3Fn65_ABp8Lj4mxrcFEZ7tOwaJyPx_69RToNA0GvEwGH-07PE81hLlO_3Z8jPnyCPEQmTGed89Dh55gpqToyDUckCtLZ-nwX50DOLfKMQueWu3znlJmrnuwIUd-vnzxdhfiyFiXxQ.ED5nIxoy5ZlE9ECjKUYhPbO1hA2Bnj4GEXnv2ar_AxU + - J5aHwluxXbBjflcftvxQQZbr1iFg231aPyno7WyZZ1XagClH3TFI9sPLz-_9CuVuYZ70EhHN2bwYWC3Co3oKyC8s4c9GYwznvyJ4jT8qXPQT3791i6WOds_pbiTplHoBn-CZxlGl5PK8ElVrnni0JdUUnJ5p8t6eWtLhtLYUpwo.r7TyNMNr9yJcgyu8aN6_PG2bKNr9wF8Eg8vf8e-3_so pragma: - no-cache request-id: - - efbeb0f5-fa25-4dad-ac75-6585c21c5aa0 + - 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 14aba90eb60..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 @@ -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.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/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\":\"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 ]\r\n }\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-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: - no-cache content-length: - - '665' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:39 GMT + - Tue, 23 Feb 2021 18:38:58 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.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/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\":\"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 ]\r\n }\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-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: - no-cache content-length: - - '665' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:40 GMT + - Tue, 23 Feb 2021 18:38:59 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.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/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\":\"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 ]\r\n }\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-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: - no-cache content-length: - - '923' + - '1283' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:41 GMT + - Tue, 23 Feb 2021 18:39:01 GMT expires: - '-1' odata-version: @@ -162,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: - - '1194' + - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -184,27 +194,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.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/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\":\"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-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: - no-cache content-length: - - '923' + - '1283' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:42 GMT + - Tue, 23 Feb 2021 18:39:03 GMT expires: - '-1' odata-version: @@ -226,7 +238,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 +249,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.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/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\":\"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 ]\r\n }\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-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: - no-cache content-length: - - '665' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:43 GMT + - Tue, 23 Feb 2021 18:39:06 GMT expires: - '-1' odata-version: @@ -274,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: - - '1197' + - '1198' 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_streaming_endpoint_create.yaml b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_ams_streaming_endpoint_create.yaml index 6ca31b7e5cb..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:04 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:06 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.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/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-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/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/14915aa6-db4d-4b84-b608-400ae716eece?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 + - 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/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/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -187,10 +191,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: @@ -207,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.18.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/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-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 + 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/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/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -225,7 +229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:39 GMT + - Thu, 21 Jan 2021 00:45:11 GMT expires: - '-1' odata-version: @@ -261,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.18.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/14915aa6-db4d-4b84-b608-400ae716eece?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\":\"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/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/14915aa6-db4d-4b84-b608-400ae716eece?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -279,7 +283,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Thu, 21 Jan 2021 00:45:13 GMT expires: - '-1' odata-version: @@ -315,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.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=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 +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\":\"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-21T00:45:08.4094481Z\",\"lastModified\":\"2021-01-21T00:45:12.1387062Z\"\r\n \ }\r\n}" headers: cache-control: @@ -340,7 +344,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Thu, 21 Jan 2021 00:45:13 GMT expires: - '-1' odata-version: @@ -377,27 +381,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.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/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/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:43:44 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/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/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 pragma: - no-cache server: @@ -407,7 +411,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -426,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.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/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/22f27eb4-e592-41f8-ad11-f5931a131251?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\":\"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/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/22f27eb4-e592-41f8-ad11-f5931a131251?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -444,7 +554,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:46 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 29e158ad251..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:03 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' 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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:05 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.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/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-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/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/5b0c26db-3ee3-492f-b318-16a04ca393aa?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 + - 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/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/5b0c26db-3ee3-492f-b318-16a04ca393aa?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -190,10 +194,64 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1195' 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 --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/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: @@ -210,17 +268,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.18.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/5b0c26db-3ee3-492f-b318-16a04ca393aa?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\":\"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/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/5b0c26db-3ee3-492f-b318-16a04ca393aa?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -228,7 +286,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:47 GMT + - Thu, 21 Jan 2021 00:45:13 GMT expires: - '-1' odata-version: @@ -264,9 +322,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.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=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,7 +341,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: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-21T00:45:07.4209435Z\",\"lastModified\":\"2021-01-21T00:45:11.2500917Z\"\r\n \ }\r\n}" headers: cache-control: @@ -293,7 +351,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:48 GMT + - Thu, 21 Jan 2021 00:45:13 GMT expires: - '-1' odata-version: @@ -328,11 +386,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.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/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,7 +407,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: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-21T00:45:07.4209435Z\",\"lastModified\":\"2021-01-21T00:45:11.2500917Z\"\r\n \ }\r\n}" headers: cache-control: @@ -359,7 +417,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:49 GMT + - Thu, 21 Jan 2021 00:45:14 GMT expires: - '-1' odata-version: @@ -410,11 +468,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.18.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 +501,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:50 GMT + - Thu, 21 Jan 2021 00:45:16 GMT expires: - '-1' odata-version: @@ -461,7 +519,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' status: code: 200 message: OK @@ -480,11 +538,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.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/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 +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\":\"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-21T00:45:07.4209435Z\",\"lastModified\":\"2021-01-21T00:45:15.7114274Z\"\r\n \ }\r\n}" headers: cache-control: @@ -513,7 +571,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:51 GMT + - Thu, 21 Jan 2021 00:45:17 GMT expires: - '-1' odata-version: @@ -563,11 +621,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.18.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 +653,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:52 GMT + - Thu, 21 Jan 2021 00:45:18 GMT expires: - '-1' odata-version: @@ -613,7 +671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -634,27 +692,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.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/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/8dd77ef3-d3f1-4f4d-885b-e6e0f88298d5?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:43:53 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/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/8dd77ef3-d3f1-4f4d-885b-e6e0f88298d5?api-version=2020-05-01 pragma: - no-cache server: @@ -664,7 +722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14997' status: code: 202 message: Accepted @@ -683,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.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/8dd77ef3-d3f1-4f4d-885b-e6e0f88298d5?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\":\"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/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/8dd77ef3-d3f1-4f4d-885b-e6e0f88298d5?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -701,7 +759,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:57 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 32e2fee6460..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:29 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 @@ -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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:29 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.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/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-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/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/0ef11227-3737-4317-a2a6-4ed0bab18cdb?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 + - 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/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/0ef11227-3737-4317-a2a6-4ed0bab18cdb?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' + - '1194' 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.18.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/0ef11227-3737-4317-a2a6-4ed0bab18cdb?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\":\"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/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/0ef11227-3737-4317-a2a6-4ed0bab18cdb?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 + - Thu, 21 Jan 2021 00:45:34 GMT expires: - '-1' odata-version: @@ -242,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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=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-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: - - Fri, 25 Sep 2020 21:43:58 GMT + - Thu, 21 Jan 2021 00:45:34 GMT expires: - '-1' odata-version: @@ -294,26 +298,26 @@ 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.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/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-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: - - Fri, 25 Sep 2020 21:43:59 GMT + - Thu, 21 Jan 2021 00:45:35 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.18.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 + - Thu, 21 Jan 2021 00:45:35 GMT expires: - '-1' odata-version: @@ -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.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/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-21T00:45:31.3480844Z\",\"lastModified\":\"2021-01-21T00:45:35.7856992Z\"\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 + - Thu, 21 Jan 2021 00:45:36 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.18.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 + - Thu, 21 Jan 2021 00:45:36 GMT expires: - '-1' odata-version: @@ -513,7 +517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' 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.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/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/aa421bb6-4164-42de-b2c9-02ef25de104e?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:02 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/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/aa421bb6-4164-42de-b2c9-02ef25de104e?api-version=2020-05-01 pragma: - no-cache server: @@ -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.18.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/aa421bb6-4164-42de-b2c9-02ef25de104e?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\":\"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/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/aa421bb6-4164-42de-b2c9-02ef25de104e?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 + - 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 12e0f9d698a..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:06 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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:08 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.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/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-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/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/2537cd08-43c1-426f-945f-957d8121ebd4?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 + - 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/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/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -188,8 +192,8 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1196' status: - code: 202 - message: Accepted + code: 201 + message: Created - request: body: null headers: @@ -206,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.18.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/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-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 + 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/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/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -224,7 +228,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:06 GMT + - Thu, 21 Jan 2021 00:45:14 GMT expires: - '-1' odata-version: @@ -260,25 +264,25 @@ 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.18.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/2537cd08-43c1-426f-945f-957d8121ebd4?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\":\"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/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/2537cd08-43c1-426f-945f-957d8121ebd4?api-version=2020-05-01 cache-control: - no-cache content-length: - - '171' + - '172' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:08 GMT + - Thu, 21 Jan 2021 00:45:16 GMT expires: - '-1' odata-version: @@ -314,32 +318,25 @@ 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.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=2018-07-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\":\"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 \"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-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 + 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: - - '1632' + - '172' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:09 GMT + - Thu, 21 Jan 2021 00:45:18 GMT expires: - '-1' odata-version: @@ -367,35 +364,4254 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - ams streaming-endpoint list + - ams streaming-endpoint create Connection: - keep-alive ParameterSetName: - - -g -a + - -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 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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?api-version=2018-07-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 \"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 - 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 - \ \"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-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 \"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 + 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: + - '171' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48: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 --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/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 + 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 \"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-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: + - no-cache + content-length: + - '1632' + content-type: + - application/json; odata.metadata=minimal + date: + - Thu, 21 Jan 2021 00:48: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 list + Connection: + - keep-alive + ParameterSetName: + - -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.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\":\"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 + \ \"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-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: @@ -405,7 +4621,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:10 GMT + - Thu, 21 Jan 2021 00:48:18 GMT expires: - '-1' odata-version: @@ -442,27 +4658,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.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/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/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:13 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/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/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 pragma: - no-cache server: @@ -472,7 +4688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted @@ -491,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.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/93030d59-0872-4842-9ca2-219b651d5162?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\":\"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/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/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -509,7 +4725,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:15 GMT + - Thu, 21 Jan 2021 00:48:23 GMT expires: - '-1' odata-version: @@ -544,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.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/93030d59-0872-4842-9ca2-219b651d5162?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\":\"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/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/93030d59-0872-4842-9ca2-219b651d5162?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -562,7 +4778,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:18 GMT + - Thu, 21 Jan 2021 00:48:25 GMT expires: - '-1' odata-version: @@ -597,16 +4813,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.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=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-21T00:45:06.9882776Z\",\"lastModified\":\"2021-01-21T00:45:14.6389378Z\"\r\n \ }\r\n }\r\n ]\r\n}" headers: cache-control: @@ -616,7 +4832,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:20 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 1109dbfe08d..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:03 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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:03 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.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/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-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/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/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?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 + - 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/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/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?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: - - '1193' + - '1195' + 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 --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\":\"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/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: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -188,17 +245,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.18.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/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?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\":\"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/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/c2f12533-67c5-437b-8a3d-8ed27e6b52b6?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -206,11 +263,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:12 GMT + - Thu, 21 Jan 2021 00:45:10 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 +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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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=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-21T00:45:05.7289192Z\",\"lastModified\":\"2021-01-21T00:45:09.4225087Z\"\r\n \ }\r\n}" headers: cache-control: @@ -260,7 +315,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:13 GMT + - Thu, 21 Jan 2021 00:45:10 GMT expires: - '-1' odata-version: @@ -295,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.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=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 },{\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\":\"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-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: @@ -317,7 +372,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:13 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 7c3dbb56b3e..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:08 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 @@ -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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:10 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.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/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-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/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/221b5f8f-07ed-4462-927a-9a52278cddfb?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 + - 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/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/221b5f8f-07ed-4462-927a-9a52278cddfb?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -186,10 +190,64 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' 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 --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/221b5f8f-07ed-4462-927a-9a52278cddfb?api-version=2020-05-01 + response: + body: + 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/221b5f8f-07ed-4462-927a-9a52278cddfb?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: @@ -206,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.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/221b5f8f-07ed-4462-927a-9a52278cddfb?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\":\"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/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/221b5f8f-07ed-4462-927a-9a52278cddfb?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 + - Thu, 21 Jan 2021 00:45:20 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.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=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-21T00:45:13.9751121Z\",\"lastModified\":\"2021-01-21T00:45:19.6971333Z\"\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 + - Thu, 21 Jan 2021 00:45:21 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.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/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 + - Thu, 21 Jan 2021 00:45:23 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.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/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-21T00:45:13.9751121Z\",\"lastModified\":\"2021-01-21T00:45:23.7495369Z\"\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 + - Thu, 21 Jan 2021 00:45:25 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.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/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/c080ac63-d72d-4c45-8334-e897f7bd3720?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44: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/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/c080ac63-d72d-4c45-8334-e897f7bd3720?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.18.0 + method: GET + 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\":\"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/c080ac63-d72d-4c45-8334-e897f7bd3720?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: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 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/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/c080ac63-d72d-4c45-8334-e897f7bd3720?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\":\"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/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/c080ac63-d72d-4c45-8334-e897f7bd3720?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 + - Thu, 21 Jan 2021 00:45:32 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.18.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/c080ac63-d72d-4c45-8334-e897f7bd3720?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\":\"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/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/c080ac63-d72d-4c45-8334-e897f7bd3720?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 + - 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 7bc4b9c2c3b..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:49 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1195' 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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:50 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.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/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-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/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/bd80d884-c7bc-40f1-a70e-dc28893bb803?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 + - 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/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/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -188,10 +192,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: @@ -208,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.18.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/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-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 + 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/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/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -226,7 +230,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:17 GMT + - Thu, 21 Jan 2021 00:45:55 GMT expires: - '-1' odata-version: @@ -262,17 +266,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.18.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/bd80d884-c7bc-40f1-a70e-dc28893bb803?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\":\"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/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/bd80d884-c7bc-40f1-a70e-dc28893bb803?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -280,7 +284,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:19 GMT + - Thu, 21 Jan 2021 00:45:58 GMT expires: - '-1' odata-version: @@ -316,9 +320,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.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=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 +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\":\"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-21T00:45:52.5878695Z\",\"lastModified\":\"2021-01-21T00:45:56.4680781Z\"\r\n \ }\r\n}" headers: cache-control: @@ -341,7 +345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:19 GMT + - Thu, 21 Jan 2021 00:45:58 GMT expires: - '-1' odata-version: @@ -376,11 +380,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.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/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 +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\":\"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-21T00:45:52.5878695Z\",\"lastModified\":\"2021-01-21T00:45:56.4680781Z\"\r\n \ }\r\n}" headers: cache-control: @@ -403,7 +407,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:21 GMT + - Thu, 21 Jan 2021 00:46:01 GMT expires: - '-1' odata-version: @@ -438,11 +442,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.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/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 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 25 Sep 2020 21:44:21 GMT + - Thu, 21 Jan 2021 00:46:01 GMT expires: - '-1' pragma: @@ -487,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.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/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/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:23 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/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/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 pragma: - no-cache server: @@ -517,7 +521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted @@ -536,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.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/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/f8db2ac0-c137-424b-8b10-115eab5e8d4d?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\":\"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/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/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -554,7 +611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:26 GMT + - Thu, 21 Jan 2021 00:46:08 GMT expires: - '-1' odata-version: @@ -589,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.18.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/f8db2ac0-c137-424b-8b10-115eab5e8d4d?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\":\"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/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/f8db2ac0-c137-424b-8b10-115eab5e8d4d?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -607,7 +664,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:28 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 009e30826e5..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:51 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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:53 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.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/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-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/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/27011bff-9713-4e3f-8ad6-8d2d8329e655?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 + - 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/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/27011bff-9713-4e3f-8ad6-8d2d8329e655?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' + - '1197' 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.18.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/27011bff-9713-4e3f-8ad6-8d2d8329e655?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\":\"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/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/27011bff-9713-4e3f-8ad6-8d2d8329e655?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 + - Thu, 21 Jan 2021 00:46:01 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.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=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-21T00:45:56.7997168Z\",\"lastModified\":\"2021-01-21T00:46:00.7819497Z\"\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 + - Thu, 21 Jan 2021 00:46:01 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.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/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/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:32 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/c5b6ec64-2928-4eb3-9cf4-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/631f6eb2-56a5-457f-9898-00fc2e09d10f?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,4522 +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 - method: GET - uri: https://management.azure.com/subscriptions/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: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/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: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/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: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/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: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/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: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/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: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/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: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/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: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/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: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 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: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 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: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 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: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 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: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 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: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 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:45: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/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: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 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: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 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: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 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: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 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: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 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:45: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/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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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:46: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/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: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 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: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 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: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 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:46: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/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: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 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: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 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:46: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/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:46: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/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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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 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: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: - 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: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 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:47: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/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:47: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/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:47: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/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:47: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/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:47: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/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:47: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/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:47: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/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:47: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/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:47: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/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:47: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/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:47: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:47: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:47: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/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:47: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/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:47: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/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:47: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/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:47: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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4868,7 +367,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:52 GMT + - Thu, 21 Jan 2021 00:46:07 GMT expires: - '-1' odata-version: @@ -4903,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4921,7 +420,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:54 GMT + - Thu, 21 Jan 2021 00:46:10 GMT expires: - '-1' odata-version: @@ -4956,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4974,7 +473,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:56 GMT + - Thu, 21 Jan 2021 00:46:12 GMT expires: - '-1' odata-version: @@ -5009,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5027,7 +526,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:58 GMT + - Thu, 21 Jan 2021 00:46:14 GMT expires: - '-1' odata-version: @@ -5062,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5080,7 +579,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:01 GMT + - Thu, 21 Jan 2021 00:46:16 GMT expires: - '-1' odata-version: @@ -5115,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5133,7 +632,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:03 GMT + - Thu, 21 Jan 2021 00:46:19 GMT expires: - '-1' odata-version: @@ -5168,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5186,7 +685,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:05 GMT + - Thu, 21 Jan 2021 00:46:21 GMT expires: - '-1' odata-version: @@ -5221,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5239,7 +738,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:08 GMT + - Thu, 21 Jan 2021 00:46:23 GMT expires: - '-1' odata-version: @@ -5274,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5292,7 +791,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:10 GMT + - Thu, 21 Jan 2021 00:46:25 GMT expires: - '-1' odata-version: @@ -5327,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5345,7 +844,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:12 GMT + - Thu, 21 Jan 2021 00:46:28 GMT expires: - '-1' odata-version: @@ -5380,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5398,7 +897,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:14 GMT + - Thu, 21 Jan 2021 00:46:30 GMT expires: - '-1' odata-version: @@ -5433,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5451,7 +950,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:17 GMT + - Thu, 21 Jan 2021 00:46:32 GMT expires: - '-1' odata-version: @@ -5486,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5504,7 +1003,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:19 GMT + - Thu, 21 Jan 2021 00:46:35 GMT expires: - '-1' odata-version: @@ -5539,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5557,7 +1056,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:21 GMT + - Thu, 21 Jan 2021 00:46:37 GMT expires: - '-1' odata-version: @@ -5592,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5610,7 +1109,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:24 GMT + - Thu, 21 Jan 2021 00:46:39 GMT expires: - '-1' odata-version: @@ -5645,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5663,7 +1162,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:26 GMT + - Thu, 21 Jan 2021 00:46:41 GMT expires: - '-1' odata-version: @@ -5698,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5716,7 +1215,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:28 GMT + - Thu, 21 Jan 2021 00:46:44 GMT expires: - '-1' odata-version: @@ -5751,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5769,7 +1268,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:30 GMT + - Thu, 21 Jan 2021 00:46:46 GMT expires: - '-1' odata-version: @@ -5804,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5822,7 +1321,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:33 GMT + - Thu, 21 Jan 2021 00:46:48 GMT expires: - '-1' odata-version: @@ -5857,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5875,7 +1374,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:35 GMT + - Thu, 21 Jan 2021 00:46:51 GMT expires: - '-1' odata-version: @@ -5910,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5928,7 +1427,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:37 GMT + - Thu, 21 Jan 2021 00:46:53 GMT expires: - '-1' odata-version: @@ -5963,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5981,7 +1480,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:40 GMT + - Thu, 21 Jan 2021 00:46:55 GMT expires: - '-1' odata-version: @@ -6016,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6034,7 +1533,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:42 GMT + - Thu, 21 Jan 2021 00:46:57 GMT expires: - '-1' odata-version: @@ -6069,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6087,7 +1586,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:44 GMT + - Thu, 21 Jan 2021 00:47:00 GMT expires: - '-1' odata-version: @@ -6122,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6140,7 +1639,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:47 GMT + - Thu, 21 Jan 2021 00:47:02 GMT expires: - '-1' odata-version: @@ -6175,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6193,7 +1692,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:49 GMT + - Thu, 21 Jan 2021 00:47:04 GMT expires: - '-1' odata-version: @@ -6228,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6246,7 +1745,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:51 GMT + - Thu, 21 Jan 2021 00:47:07 GMT expires: - '-1' odata-version: @@ -6281,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6299,7 +1798,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:54 GMT + - Thu, 21 Jan 2021 00:47:09 GMT expires: - '-1' odata-version: @@ -6334,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6352,7 +1851,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:56 GMT + - Thu, 21 Jan 2021 00:47:11 GMT expires: - '-1' odata-version: @@ -6387,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6405,7 +1904,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:58 GMT + - Thu, 21 Jan 2021 00:47:13 GMT expires: - '-1' odata-version: @@ -6440,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6458,7 +1957,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:00 GMT + - Thu, 21 Jan 2021 00:47:16 GMT expires: - '-1' odata-version: @@ -6493,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6511,7 +2010,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:03 GMT + - Thu, 21 Jan 2021 00:47:18 GMT expires: - '-1' odata-version: @@ -6546,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6564,7 +2063,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:05 GMT + - Thu, 21 Jan 2021 00:47:20 GMT expires: - '-1' odata-version: @@ -6599,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6617,7 +2116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:07 GMT + - Thu, 21 Jan 2021 00:47:23 GMT expires: - '-1' odata-version: @@ -6652,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6670,7 +2169,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:10 GMT + - Thu, 21 Jan 2021 00:47:25 GMT expires: - '-1' odata-version: @@ -6705,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6723,7 +2222,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:12 GMT + - Thu, 21 Jan 2021 00:47:27 GMT expires: - '-1' odata-version: @@ -6758,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6776,7 +2275,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:14 GMT + - Thu, 21 Jan 2021 00:47:29 GMT expires: - '-1' odata-version: @@ -6811,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6829,7 +2328,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:17 GMT + - Thu, 21 Jan 2021 00:47:32 GMT expires: - '-1' odata-version: @@ -6864,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6882,7 +2381,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:19 GMT + - Thu, 21 Jan 2021 00:47:34 GMT expires: - '-1' odata-version: @@ -6917,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6935,7 +2434,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:21 GMT + - Thu, 21 Jan 2021 00:47:36 GMT expires: - '-1' odata-version: @@ -6970,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6988,7 +2487,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:23 GMT + - Thu, 21 Jan 2021 00:47:38 GMT expires: - '-1' odata-version: @@ -7023,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7041,7 +2540,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:26 GMT + - Thu, 21 Jan 2021 00:47:41 GMT expires: - '-1' odata-version: @@ -7076,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7094,7 +2593,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:28 GMT + - Thu, 21 Jan 2021 00:47:43 GMT expires: - '-1' odata-version: @@ -7129,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7147,7 +2646,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:30 GMT + - Thu, 21 Jan 2021 00:47:45 GMT expires: - '-1' odata-version: @@ -7182,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7200,7 +2699,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:33 GMT + - Thu, 21 Jan 2021 00:47:48 GMT expires: - '-1' odata-version: @@ -7235,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7253,7 +2752,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:35 GMT + - Thu, 21 Jan 2021 00:47:50 GMT expires: - '-1' odata-version: @@ -7288,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7306,7 +2805,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:37 GMT + - Thu, 21 Jan 2021 00:47:52 GMT expires: - '-1' odata-version: @@ -7341,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7359,7 +2858,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:39 GMT + - Thu, 21 Jan 2021 00:47:54 GMT expires: - '-1' odata-version: @@ -7394,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7412,7 +2911,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:42 GMT + - Thu, 21 Jan 2021 00:47:57 GMT expires: - '-1' odata-version: @@ -7447,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7465,7 +2964,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:44 GMT + - Thu, 21 Jan 2021 00:48:00 GMT expires: - '-1' odata-version: @@ -7500,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7518,7 +3017,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:46 GMT + - Thu, 21 Jan 2021 00:48:02 GMT expires: - '-1' odata-version: @@ -7553,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7571,7 +3070,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:50 GMT + - Thu, 21 Jan 2021 00:48:05 GMT expires: - '-1' odata-version: @@ -7606,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7624,7 +3123,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:52 GMT + - Thu, 21 Jan 2021 00:48:07 GMT expires: - '-1' odata-version: @@ -7659,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7677,7 +3176,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:54 GMT + - Thu, 21 Jan 2021 00:48:09 GMT expires: - '-1' odata-version: @@ -7712,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7730,7 +3229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:57 GMT + - Thu, 21 Jan 2021 00:48:11 GMT expires: - '-1' odata-version: @@ -7765,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7783,7 +3282,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:59 GMT + - Thu, 21 Jan 2021 00:48:14 GMT expires: - '-1' odata-version: @@ -7818,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7836,7 +3335,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:01 GMT + - Thu, 21 Jan 2021 00:48:16 GMT expires: - '-1' odata-version: @@ -7871,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7889,7 +3388,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:04 GMT + - Thu, 21 Jan 2021 00:48:18 GMT expires: - '-1' odata-version: @@ -7924,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7942,7 +3441,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:06 GMT + - Thu, 21 Jan 2021 00:48:21 GMT expires: - '-1' odata-version: @@ -7977,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7995,7 +3494,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:08 GMT + - Thu, 21 Jan 2021 00:48:23 GMT expires: - '-1' odata-version: @@ -8030,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8048,7 +3547,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:10 GMT + - Thu, 21 Jan 2021 00:48:25 GMT expires: - '-1' odata-version: @@ -8083,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8101,7 +3600,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:13 GMT + - Thu, 21 Jan 2021 00:48:27 GMT expires: - '-1' odata-version: @@ -8136,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8154,7 +3653,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:15 GMT + - Thu, 21 Jan 2021 00:48:30 GMT expires: - '-1' odata-version: @@ -8189,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8207,7 +3706,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:17 GMT + - Thu, 21 Jan 2021 00:48:32 GMT expires: - '-1' odata-version: @@ -8242,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8260,7 +3759,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:20 GMT + - Thu, 21 Jan 2021 00:48:34 GMT expires: - '-1' odata-version: @@ -8295,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8313,7 +3812,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:22 GMT + - Thu, 21 Jan 2021 00:48:37 GMT expires: - '-1' odata-version: @@ -8348,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8366,7 +3865,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:24 GMT + - Thu, 21 Jan 2021 00:48:39 GMT expires: - '-1' odata-version: @@ -8401,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8419,7 +3918,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:28 GMT + - Thu, 21 Jan 2021 00:48:41 GMT expires: - '-1' odata-version: @@ -8454,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8472,7 +3971,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:30 GMT + - Thu, 21 Jan 2021 00:48:43 GMT expires: - '-1' odata-version: @@ -8507,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8525,7 +4024,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:32 GMT + - Thu, 21 Jan 2021 00:48:46 GMT expires: - '-1' odata-version: @@ -8560,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8578,7 +4077,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:34 GMT + - Thu, 21 Jan 2021 00:48:48 GMT expires: - '-1' odata-version: @@ -8613,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8631,7 +4130,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:37 GMT + - Thu, 21 Jan 2021 00:48:50 GMT expires: - '-1' odata-version: @@ -8666,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8684,7 +4183,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:39 GMT + - Thu, 21 Jan 2021 00:48:53 GMT expires: - '-1' odata-version: @@ -8719,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8737,7 +4236,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:41 GMT + - Thu, 21 Jan 2021 00:48:55 GMT expires: - '-1' odata-version: @@ -8772,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8790,7 +4289,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:44 GMT + - Thu, 21 Jan 2021 00:48:57 GMT expires: - '-1' odata-version: @@ -8825,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8843,7 +4342,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:46 GMT + - Thu, 21 Jan 2021 00:48:59 GMT expires: - '-1' odata-version: @@ -8878,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8896,7 +4395,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:48 GMT + - Thu, 21 Jan 2021 00:49:02 GMT expires: - '-1' odata-version: @@ -8931,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8949,7 +4448,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:50 GMT + - Thu, 21 Jan 2021 00:49:04 GMT expires: - '-1' odata-version: @@ -8984,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9002,7 +4501,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:53 GMT + - Thu, 21 Jan 2021 00:49:06 GMT expires: - '-1' odata-version: @@ -9037,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9055,7 +4554,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:55 GMT + - Thu, 21 Jan 2021 00:49:08 GMT expires: - '-1' odata-version: @@ -9090,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9108,7 +4607,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:57 GMT + - Thu, 21 Jan 2021 00:49:11 GMT expires: - '-1' odata-version: @@ -9143,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9161,7 +4660,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:00 GMT + - Thu, 21 Jan 2021 00:49:13 GMT expires: - '-1' odata-version: @@ -9196,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9214,7 +4713,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:02 GMT + - Thu, 21 Jan 2021 00:49:15 GMT expires: - '-1' odata-version: @@ -9249,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9267,7 +4766,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:04 GMT + - Thu, 21 Jan 2021 00:49:18 GMT expires: - '-1' odata-version: @@ -9302,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9320,7 +4819,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:07 GMT + - Thu, 21 Jan 2021 00:49:20 GMT expires: - '-1' odata-version: @@ -9355,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9373,7 +4872,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:09 GMT + - Thu, 21 Jan 2021 00:49:22 GMT expires: - '-1' odata-version: @@ -9408,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9426,7 +4925,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:11 GMT + - Thu, 21 Jan 2021 00:49:24 GMT expires: - '-1' odata-version: @@ -9461,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9479,7 +4978,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:13 GMT + - Thu, 21 Jan 2021 00:49:27 GMT expires: - '-1' odata-version: @@ -9514,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9532,7 +5031,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:16 GMT + - Thu, 21 Jan 2021 00:49:29 GMT expires: - '-1' odata-version: @@ -9567,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9585,7 +5084,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:18 GMT + - Thu, 21 Jan 2021 00:49:31 GMT expires: - '-1' odata-version: @@ -9620,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9638,7 +5137,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:20 GMT + - Thu, 21 Jan 2021 00:49:33 GMT expires: - '-1' odata-version: @@ -9673,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9691,7 +5190,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:23 GMT + - Thu, 21 Jan 2021 00:49:36 GMT expires: - '-1' odata-version: @@ -9726,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9744,7 +5243,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:25 GMT + - Thu, 21 Jan 2021 00:49:38 GMT expires: - '-1' odata-version: @@ -9779,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9797,7 +5296,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:27 GMT + - Thu, 21 Jan 2021 00:49:40 GMT expires: - '-1' odata-version: @@ -9832,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9850,7 +5349,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:30 GMT + - Thu, 21 Jan 2021 00:49:43 GMT expires: - '-1' odata-version: @@ -9885,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9903,7 +5402,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:32 GMT + - Thu, 21 Jan 2021 00:49:45 GMT expires: - '-1' odata-version: @@ -9938,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9956,7 +5455,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:34 GMT + - Thu, 21 Jan 2021 00:49:47 GMT expires: - '-1' odata-version: @@ -9991,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10009,7 +5508,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:36 GMT + - Thu, 21 Jan 2021 00:49:49 GMT expires: - '-1' odata-version: @@ -10044,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10062,7 +5561,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:39 GMT + - Thu, 21 Jan 2021 00:49:52 GMT expires: - '-1' odata-version: @@ -10097,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10115,7 +5614,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:41 GMT + - Thu, 21 Jan 2021 00:49:54 GMT expires: - '-1' odata-version: @@ -10150,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10168,7 +5667,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:43 GMT + - Thu, 21 Jan 2021 00:49:56 GMT expires: - '-1' odata-version: @@ -10203,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10221,7 +5720,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:46 GMT + - Thu, 21 Jan 2021 00:49:59 GMT expires: - '-1' odata-version: @@ -10256,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10274,7 +5773,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:48 GMT + - Thu, 21 Jan 2021 00:50:01 GMT expires: - '-1' odata-version: @@ -10309,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10327,7 +5826,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:50 GMT + - Thu, 21 Jan 2021 00:50:03 GMT expires: - '-1' odata-version: @@ -10362,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10380,7 +5879,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:52 GMT + - Thu, 21 Jan 2021 00:50:05 GMT expires: - '-1' odata-version: @@ -10415,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10433,7 +5932,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:55 GMT + - Thu, 21 Jan 2021 00:50:08 GMT expires: - '-1' odata-version: @@ -10468,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10486,7 +5985,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:57 GMT + - Thu, 21 Jan 2021 00:50:10 GMT expires: - '-1' odata-version: @@ -10521,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10539,7 +6038,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:59 GMT + - Thu, 21 Jan 2021 00:50:12 GMT expires: - '-1' odata-version: @@ -10574,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10592,7 +6091,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:02 GMT + - Thu, 21 Jan 2021 00:50:15 GMT expires: - '-1' odata-version: @@ -10627,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10645,7 +6144,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:04 GMT + - Thu, 21 Jan 2021 00:50:17 GMT expires: - '-1' odata-version: @@ -10680,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10698,7 +6197,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:06 GMT + - Thu, 21 Jan 2021 00:50:19 GMT expires: - '-1' odata-version: @@ -10733,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10751,7 +6250,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:08 GMT + - Thu, 21 Jan 2021 00:50:23 GMT expires: - '-1' odata-version: @@ -10786,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10804,7 +6303,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:11 GMT + - Thu, 21 Jan 2021 00:50:25 GMT expires: - '-1' odata-version: @@ -10839,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10857,7 +6356,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:13 GMT + - Thu, 21 Jan 2021 00:50:27 GMT expires: - '-1' odata-version: @@ -10892,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10910,7 +6409,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:15 GMT + - Thu, 21 Jan 2021 00:50:29 GMT expires: - '-1' odata-version: @@ -10945,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10963,7 +6462,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:18 GMT + - Thu, 21 Jan 2021 00:50:32 GMT expires: - '-1' odata-version: @@ -10998,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11016,7 +6515,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:20 GMT + - Thu, 21 Jan 2021 00:50:34 GMT expires: - '-1' odata-version: @@ -11051,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11069,7 +6568,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:22 GMT + - Thu, 21 Jan 2021 00:50:36 GMT expires: - '-1' odata-version: @@ -11104,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11122,7 +6621,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:25 GMT + - Thu, 21 Jan 2021 00:50:38 GMT expires: - '-1' odata-version: @@ -11157,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11175,7 +6674,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:27 GMT + - Thu, 21 Jan 2021 00:50:42 GMT expires: - '-1' odata-version: @@ -11210,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11228,7 +6727,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:29 GMT + - Thu, 21 Jan 2021 00:50:44 GMT expires: - '-1' odata-version: @@ -11263,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11281,7 +6780,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:31 GMT + - Thu, 21 Jan 2021 00:50:46 GMT expires: - '-1' odata-version: @@ -11316,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11334,7 +6833,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:34 GMT + - Thu, 21 Jan 2021 00:50:49 GMT expires: - '-1' odata-version: @@ -11369,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11387,7 +6886,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:36 GMT + - Thu, 21 Jan 2021 00:50:51 GMT expires: - '-1' odata-version: @@ -11422,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11440,7 +6939,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:38 GMT + - Thu, 21 Jan 2021 00:50:53 GMT expires: - '-1' odata-version: @@ -11475,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11493,7 +6992,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:41 GMT + - Thu, 21 Jan 2021 00:50:55 GMT expires: - '-1' odata-version: @@ -11528,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11546,7 +7045,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:43 GMT + - Thu, 21 Jan 2021 00:50:58 GMT expires: - '-1' odata-version: @@ -11581,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11599,7 +7098,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:45 GMT + - Thu, 21 Jan 2021 00:51:00 GMT expires: - '-1' odata-version: @@ -11634,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11652,7 +7151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:48 GMT + - Thu, 21 Jan 2021 00:51:02 GMT expires: - '-1' odata-version: @@ -11687,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11705,7 +7204,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:50 GMT + - Thu, 21 Jan 2021 00:51:04 GMT expires: - '-1' odata-version: @@ -11740,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11758,7 +7257,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:52 GMT + - Thu, 21 Jan 2021 00:51:07 GMT expires: - '-1' odata-version: @@ -11793,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11811,7 +7310,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:54 GMT + - Thu, 21 Jan 2021 00:51:09 GMT expires: - '-1' odata-version: @@ -11846,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11864,7 +7363,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:58 GMT + - Thu, 21 Jan 2021 00:51:11 GMT expires: - '-1' odata-version: @@ -11899,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11917,7 +7416,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:01 GMT + - Thu, 21 Jan 2021 00:51:14 GMT expires: - '-1' odata-version: @@ -11952,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11970,7 +7469,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:04 GMT + - Thu, 21 Jan 2021 00:51:16 GMT expires: - '-1' odata-version: @@ -12005,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12023,7 +7522,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:06 GMT + - Thu, 21 Jan 2021 00:51:18 GMT expires: - '-1' odata-version: @@ -12058,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12076,7 +7575,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:08 GMT + - Thu, 21 Jan 2021 00:51:20 GMT expires: - '-1' odata-version: @@ -12111,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12129,7 +7628,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:11 GMT + - Thu, 21 Jan 2021 00:51:23 GMT expires: - '-1' odata-version: @@ -12164,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12182,7 +7681,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:13 GMT + - Thu, 21 Jan 2021 00:51:25 GMT expires: - '-1' odata-version: @@ -12217,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12235,7 +7734,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:15 GMT + - Thu, 21 Jan 2021 00:51:27 GMT expires: - '-1' odata-version: @@ -12270,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12288,7 +7787,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:17 GMT + - Thu, 21 Jan 2021 00:51:30 GMT expires: - '-1' odata-version: @@ -12323,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12341,7 +7840,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:20 GMT + - Thu, 21 Jan 2021 00:51:32 GMT expires: - '-1' odata-version: @@ -12376,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12394,7 +7893,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:22 GMT + - Thu, 21 Jan 2021 00:51:34 GMT expires: - '-1' odata-version: @@ -12429,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12447,7 +7946,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:24 GMT + - Thu, 21 Jan 2021 00:51:36 GMT expires: - '-1' odata-version: @@ -12482,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12500,7 +7999,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:27 GMT + - Thu, 21 Jan 2021 00:51:39 GMT expires: - '-1' odata-version: @@ -12535,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12553,7 +8052,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:29 GMT + - Thu, 21 Jan 2021 00:51:41 GMT expires: - '-1' odata-version: @@ -12588,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12606,7 +8105,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:31 GMT + - Thu, 21 Jan 2021 00:51:43 GMT expires: - '-1' odata-version: @@ -12641,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12659,7 +8158,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:33 GMT + - Thu, 21 Jan 2021 00:51:45 GMT expires: - '-1' odata-version: @@ -12694,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12712,7 +8211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:36 GMT + - Thu, 21 Jan 2021 00:51:48 GMT expires: - '-1' odata-version: @@ -12747,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12765,7 +8264,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:38 GMT + - Thu, 21 Jan 2021 00:51:50 GMT expires: - '-1' odata-version: @@ -12800,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12818,7 +8317,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:40 GMT + - Thu, 21 Jan 2021 00:51:52 GMT expires: - '-1' odata-version: @@ -12853,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12871,7 +8370,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:43 GMT + - Thu, 21 Jan 2021 00:51:55 GMT expires: - '-1' odata-version: @@ -12906,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12924,7 +8423,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:45 GMT + - Thu, 21 Jan 2021 00:51:57 GMT expires: - '-1' odata-version: @@ -12959,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12977,7 +8476,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:47 GMT + - Thu, 21 Jan 2021 00:51:59 GMT expires: - '-1' odata-version: @@ -13012,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13030,7 +8529,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:49 GMT + - Thu, 21 Jan 2021 00:52:01 GMT expires: - '-1' odata-version: @@ -13065,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13083,7 +8582,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:52 GMT + - Thu, 21 Jan 2021 00:52:04 GMT expires: - '-1' odata-version: @@ -13118,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13136,7 +8635,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:54 GMT + - Thu, 21 Jan 2021 00:52:06 GMT expires: - '-1' odata-version: @@ -13171,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13189,7 +8688,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:56 GMT + - Thu, 21 Jan 2021 00:52:08 GMT expires: - '-1' odata-version: @@ -13224,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13242,7 +8741,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:59 GMT + - Thu, 21 Jan 2021 00:52:11 GMT expires: - '-1' odata-version: @@ -13277,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13295,7 +8794,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:01 GMT + - Thu, 21 Jan 2021 00:52:13 GMT expires: - '-1' odata-version: @@ -13330,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13348,7 +8847,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:03 GMT + - Thu, 21 Jan 2021 00:52:15 GMT expires: - '-1' odata-version: @@ -13383,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13401,7 +8900,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:05 GMT + - Thu, 21 Jan 2021 00:52:17 GMT expires: - '-1' odata-version: @@ -13436,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13454,7 +8953,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:08 GMT + - Thu, 21 Jan 2021 00:52:20 GMT expires: - '-1' odata-version: @@ -13489,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13507,7 +9006,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:10 GMT + - Thu, 21 Jan 2021 00:52:22 GMT expires: - '-1' odata-version: @@ -13542,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13560,7 +9059,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:12 GMT + - Thu, 21 Jan 2021 00:52:24 GMT expires: - '-1' odata-version: @@ -13595,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13613,7 +9112,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:15 GMT + - Thu, 21 Jan 2021 00:52:26 GMT expires: - '-1' odata-version: @@ -13648,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13666,7 +9165,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:17 GMT + - Thu, 21 Jan 2021 00:52:29 GMT expires: - '-1' odata-version: @@ -13701,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13719,7 +9218,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:19 GMT + - Thu, 21 Jan 2021 00:52:31 GMT expires: - '-1' odata-version: @@ -13754,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13772,7 +9271,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:21 GMT + - Thu, 21 Jan 2021 00:52:33 GMT expires: - '-1' odata-version: @@ -13807,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13825,7 +9324,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:24 GMT + - Thu, 21 Jan 2021 00:52:36 GMT expires: - '-1' odata-version: @@ -13860,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13878,7 +9377,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:26 GMT + - Thu, 21 Jan 2021 00:52:38 GMT expires: - '-1' odata-version: @@ -13913,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13931,7 +9430,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:28 GMT + - Thu, 21 Jan 2021 00:52:40 GMT expires: - '-1' odata-version: @@ -13966,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13984,7 +9483,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:31 GMT + - Thu, 21 Jan 2021 00:52:42 GMT expires: - '-1' odata-version: @@ -14019,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14037,7 +9536,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:33 GMT + - Thu, 21 Jan 2021 00:52:45 GMT expires: - '-1' odata-version: @@ -14072,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14090,7 +9589,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:35 GMT + - Thu, 21 Jan 2021 00:52:47 GMT expires: - '-1' odata-version: @@ -14125,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14143,7 +9642,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:37 GMT + - Thu, 21 Jan 2021 00:52:49 GMT expires: - '-1' odata-version: @@ -14178,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14196,7 +9695,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:40 GMT + - Thu, 21 Jan 2021 00:52:51 GMT expires: - '-1' odata-version: @@ -14231,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14249,7 +9748,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:42 GMT + - Thu, 21 Jan 2021 00:52:54 GMT expires: - '-1' odata-version: @@ -14284,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14302,7 +9801,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:44 GMT + - Thu, 21 Jan 2021 00:52:56 GMT expires: - '-1' odata-version: @@ -14337,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14355,7 +9854,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:47 GMT + - Thu, 21 Jan 2021 00:52:58 GMT expires: - '-1' odata-version: @@ -14390,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14408,7 +9907,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:49 GMT + - Thu, 21 Jan 2021 00:53:01 GMT expires: - '-1' odata-version: @@ -14443,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14461,7 +9960,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:51 GMT + - Thu, 21 Jan 2021 00:53:03 GMT expires: - '-1' odata-version: @@ -14496,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14514,7 +10013,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:53 GMT + - Thu, 21 Jan 2021 00:53:05 GMT expires: - '-1' odata-version: @@ -14549,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14567,7 +10066,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:56 GMT + - Thu, 21 Jan 2021 00:53:07 GMT expires: - '-1' odata-version: @@ -14602,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14620,7 +10119,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:58 GMT + - Thu, 21 Jan 2021 00:53:10 GMT expires: - '-1' odata-version: @@ -14655,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14673,7 +10172,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:00 GMT + - Thu, 21 Jan 2021 00:53:12 GMT expires: - '-1' odata-version: @@ -14708,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14726,7 +10225,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:03 GMT + - Thu, 21 Jan 2021 00:53:14 GMT expires: - '-1' odata-version: @@ -14761,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14779,7 +10278,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:06 GMT + - Thu, 21 Jan 2021 00:53:17 GMT expires: - '-1' odata-version: @@ -14814,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14832,7 +10331,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:08 GMT + - Thu, 21 Jan 2021 00:53:19 GMT expires: - '-1' odata-version: @@ -14867,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14885,7 +10384,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:11 GMT + - Thu, 21 Jan 2021 00:53:21 GMT expires: - '-1' odata-version: @@ -14920,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14938,7 +10437,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:14 GMT + - Thu, 21 Jan 2021 00:53:23 GMT expires: - '-1' odata-version: @@ -14973,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14991,7 +10490,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:16 GMT + - Thu, 21 Jan 2021 00:53:26 GMT expires: - '-1' odata-version: @@ -15026,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15044,7 +10543,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:19 GMT + - Thu, 21 Jan 2021 00:53:28 GMT expires: - '-1' odata-version: @@ -15079,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15097,7 +10596,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:21 GMT + - Thu, 21 Jan 2021 00:53:31 GMT expires: - '-1' odata-version: @@ -15132,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15150,7 +10649,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:23 GMT + - Thu, 21 Jan 2021 00:53:34 GMT expires: - '-1' odata-version: @@ -15185,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15203,7 +10702,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:25 GMT + - Thu, 21 Jan 2021 00:53:36 GMT expires: - '-1' odata-version: @@ -15238,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15256,7 +10755,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:28 GMT + - Thu, 21 Jan 2021 00:53:38 GMT expires: - '-1' odata-version: @@ -15291,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15309,7 +10808,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:30 GMT + - Thu, 21 Jan 2021 00:53:40 GMT expires: - '-1' odata-version: @@ -15344,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15362,7 +10861,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:32 GMT + - Thu, 21 Jan 2021 00:53:43 GMT expires: - '-1' odata-version: @@ -15397,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15415,7 +10914,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:35 GMT + - Thu, 21 Jan 2021 00:53:45 GMT expires: - '-1' odata-version: @@ -15450,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15468,7 +10967,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:37 GMT + - Thu, 21 Jan 2021 00:53:47 GMT expires: - '-1' odata-version: @@ -15503,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15521,7 +11020,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:39 GMT + - Thu, 21 Jan 2021 00:53:50 GMT expires: - '-1' odata-version: @@ -15556,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15574,7 +11073,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:41 GMT + - Thu, 21 Jan 2021 00:53:52 GMT expires: - '-1' odata-version: @@ -15609,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15627,7 +11126,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:44 GMT + - Thu, 21 Jan 2021 00:53:54 GMT expires: - '-1' odata-version: @@ -15662,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15680,7 +11179,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:46 GMT + - Thu, 21 Jan 2021 00:53:56 GMT expires: - '-1' odata-version: @@ -15715,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15733,7 +11232,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:48 GMT + - Thu, 21 Jan 2021 00:53:59 GMT expires: - '-1' odata-version: @@ -15768,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15786,7 +11285,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:51 GMT + - Thu, 21 Jan 2021 00:54:01 GMT expires: - '-1' odata-version: @@ -15821,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15839,7 +11338,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:53 GMT + - Thu, 21 Jan 2021 00:54:03 GMT expires: - '-1' odata-version: @@ -15874,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15892,7 +11391,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:55 GMT + - Thu, 21 Jan 2021 00:54:05 GMT expires: - '-1' odata-version: @@ -15927,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15945,7 +11444,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:57 GMT + - Thu, 21 Jan 2021 00:54:08 GMT expires: - '-1' odata-version: @@ -15980,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15998,7 +11497,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:00 GMT + - Thu, 21 Jan 2021 00:54:10 GMT expires: - '-1' odata-version: @@ -16033,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16051,7 +11550,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:02 GMT + - Thu, 21 Jan 2021 00:54:12 GMT expires: - '-1' odata-version: @@ -16086,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16104,7 +11603,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:04 GMT + - Thu, 21 Jan 2021 00:54:15 GMT expires: - '-1' odata-version: @@ -16139,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16157,7 +11656,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:07 GMT + - Thu, 21 Jan 2021 00:54:17 GMT expires: - '-1' odata-version: @@ -16192,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16210,7 +11709,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:09 GMT + - Thu, 21 Jan 2021 00:54:19 GMT expires: - '-1' odata-version: @@ -16245,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16263,7 +11762,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:11 GMT + - Thu, 21 Jan 2021 00:54:21 GMT expires: - '-1' odata-version: @@ -16298,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16316,7 +11815,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:13 GMT + - Thu, 21 Jan 2021 00:54:24 GMT expires: - '-1' odata-version: @@ -16351,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16369,7 +11868,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:16 GMT + - Thu, 21 Jan 2021 00:54:26 GMT expires: - '-1' odata-version: @@ -16404,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16422,7 +11921,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:18 GMT + - Thu, 21 Jan 2021 00:54:28 GMT expires: - '-1' odata-version: @@ -16457,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16475,7 +11974,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:20 GMT + - Thu, 21 Jan 2021 00:54:31 GMT expires: - '-1' odata-version: @@ -16510,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16528,7 +12027,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:23 GMT + - Thu, 21 Jan 2021 00:54:33 GMT expires: - '-1' odata-version: @@ -16563,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16581,7 +12080,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:25 GMT + - Thu, 21 Jan 2021 00:54:35 GMT expires: - '-1' odata-version: @@ -16616,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16634,7 +12133,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:27 GMT + - Thu, 21 Jan 2021 00:54:39 GMT expires: - '-1' odata-version: @@ -16669,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16687,7 +12186,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:29 GMT + - Thu, 21 Jan 2021 00:54:41 GMT expires: - '-1' odata-version: @@ -16722,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16740,7 +12239,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:32 GMT + - Thu, 21 Jan 2021 00:54:43 GMT expires: - '-1' odata-version: @@ -16775,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16793,7 +12292,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:34 GMT + - Thu, 21 Jan 2021 00:54:45 GMT expires: - '-1' odata-version: @@ -16828,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16846,7 +12345,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:36 GMT + - Thu, 21 Jan 2021 00:54:48 GMT expires: - '-1' odata-version: @@ -16881,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16899,7 +12398,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:39 GMT + - Thu, 21 Jan 2021 00:54:50 GMT expires: - '-1' odata-version: @@ -16934,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16952,7 +12451,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:41 GMT + - Thu, 21 Jan 2021 00:54:52 GMT expires: - '-1' odata-version: @@ -16987,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17005,7 +12504,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:43 GMT + - Thu, 21 Jan 2021 00:54:55 GMT expires: - '-1' odata-version: @@ -17040,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17058,7 +12557,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:45 GMT + - Thu, 21 Jan 2021 00:54:57 GMT expires: - '-1' odata-version: @@ -17093,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17111,7 +12610,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:48 GMT + - Thu, 21 Jan 2021 00:54:59 GMT expires: - '-1' odata-version: @@ -17146,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17164,7 +12663,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:50 GMT + - Thu, 21 Jan 2021 00:55:01 GMT expires: - '-1' odata-version: @@ -17199,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17217,7 +12716,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:52 GMT + - Thu, 21 Jan 2021 00:55:04 GMT expires: - '-1' odata-version: @@ -17252,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17270,7 +12769,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:55 GMT + - Thu, 21 Jan 2021 00:55:06 GMT expires: - '-1' odata-version: @@ -17305,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17323,7 +12822,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:57 GMT + - Thu, 21 Jan 2021 00:55:08 GMT expires: - '-1' odata-version: @@ -17358,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17376,7 +12875,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:59 GMT + - Thu, 21 Jan 2021 00:55:10 GMT expires: - '-1' odata-version: @@ -17411,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17429,7 +12928,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:01 GMT + - Thu, 21 Jan 2021 00:55:13 GMT expires: - '-1' odata-version: @@ -17464,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17482,7 +12981,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:04 GMT + - Thu, 21 Jan 2021 00:55:15 GMT expires: - '-1' odata-version: @@ -17517,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17535,7 +13034,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:06 GMT + - Thu, 21 Jan 2021 00:55:17 GMT expires: - '-1' odata-version: @@ -17570,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17588,7 +13087,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:08 GMT + - Thu, 21 Jan 2021 00:55:20 GMT expires: - '-1' odata-version: @@ -17623,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17641,7 +13140,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:11 GMT + - Thu, 21 Jan 2021 00:55:22 GMT expires: - '-1' odata-version: @@ -17676,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17694,7 +13193,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:13 GMT + - Thu, 21 Jan 2021 00:55:24 GMT expires: - '-1' odata-version: @@ -17729,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17747,7 +13246,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:15 GMT + - Thu, 21 Jan 2021 00:55:26 GMT expires: - '-1' odata-version: @@ -17782,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17800,7 +13299,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:18 GMT + - Thu, 21 Jan 2021 00:55:29 GMT expires: - '-1' odata-version: @@ -17835,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17853,7 +13352,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:20 GMT + - Thu, 21 Jan 2021 00:55:31 GMT expires: - '-1' odata-version: @@ -17888,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17906,7 +13405,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:22 GMT + - Thu, 21 Jan 2021 00:55:33 GMT expires: - '-1' odata-version: @@ -17941,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17959,7 +13458,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:24 GMT + - Thu, 21 Jan 2021 00:55:36 GMT expires: - '-1' odata-version: @@ -17994,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18012,7 +13511,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:27 GMT + - Thu, 21 Jan 2021 00:55:38 GMT expires: - '-1' odata-version: @@ -18047,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18065,7 +13564,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:29 GMT + - Thu, 21 Jan 2021 00:55:40 GMT expires: - '-1' odata-version: @@ -18100,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18118,7 +13617,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:31 GMT + - Thu, 21 Jan 2021 00:55:42 GMT expires: - '-1' odata-version: @@ -18153,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18171,7 +13670,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:34 GMT + - Thu, 21 Jan 2021 00:55:45 GMT expires: - '-1' odata-version: @@ -18206,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18224,7 +13723,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:36 GMT + - Thu, 21 Jan 2021 00:55:47 GMT expires: - '-1' odata-version: @@ -18259,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18277,7 +13776,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:38 GMT + - Thu, 21 Jan 2021 00:55:49 GMT expires: - '-1' odata-version: @@ -18312,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18330,7 +13829,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:40 GMT + - Thu, 21 Jan 2021 00:55:51 GMT expires: - '-1' odata-version: @@ -18365,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18383,7 +13882,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:43 GMT + - Thu, 21 Jan 2021 00:55:54 GMT expires: - '-1' odata-version: @@ -18418,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18436,7 +13935,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:45 GMT + - Thu, 21 Jan 2021 00:55:56 GMT expires: - '-1' odata-version: @@ -18471,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18489,7 +13988,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:47 GMT + - Thu, 21 Jan 2021 00:55:58 GMT expires: - '-1' odata-version: @@ -18524,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18542,7 +14041,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:50 GMT + - Thu, 21 Jan 2021 00:56:01 GMT expires: - '-1' odata-version: @@ -18577,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18595,7 +14094,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:52 GMT + - Thu, 21 Jan 2021 00:56:03 GMT expires: - '-1' odata-version: @@ -18630,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18648,7 +14147,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:54 GMT + - Thu, 21 Jan 2021 00:56:05 GMT expires: - '-1' odata-version: @@ -18683,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18701,7 +14200,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:56 GMT + - Thu, 21 Jan 2021 00:56:08 GMT expires: - '-1' odata-version: @@ -18736,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18754,7 +14253,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:59 GMT + - Thu, 21 Jan 2021 00:56:10 GMT expires: - '-1' odata-version: @@ -18789,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18807,7 +14306,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:01 GMT + - Thu, 21 Jan 2021 00:56:12 GMT expires: - '-1' odata-version: @@ -18842,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18860,7 +14359,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:03 GMT + - Thu, 21 Jan 2021 00:56:14 GMT expires: - '-1' odata-version: @@ -18895,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18913,7 +14412,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:06 GMT + - Thu, 21 Jan 2021 00:56:17 GMT expires: - '-1' odata-version: @@ -18948,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18966,7 +14465,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:08 GMT + - Thu, 21 Jan 2021 00:56:20 GMT expires: - '-1' odata-version: @@ -19001,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19019,7 +14518,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:10 GMT + - Thu, 21 Jan 2021 00:56:22 GMT expires: - '-1' odata-version: @@ -19054,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19072,7 +14571,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:12 GMT + - Thu, 21 Jan 2021 00:56:24 GMT expires: - '-1' odata-version: @@ -19107,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19125,7 +14624,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:15 GMT + - Thu, 21 Jan 2021 00:56:27 GMT expires: - '-1' odata-version: @@ -19160,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19178,7 +14677,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:17 GMT + - Thu, 21 Jan 2021 00:56:29 GMT expires: - '-1' odata-version: @@ -19213,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19231,7 +14730,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:19 GMT + - Thu, 21 Jan 2021 00:56:31 GMT expires: - '-1' odata-version: @@ -19266,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19284,7 +14783,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:22 GMT + - Thu, 21 Jan 2021 00:56:34 GMT expires: - '-1' odata-version: @@ -19319,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19337,7 +14836,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:24 GMT + - Thu, 21 Jan 2021 00:56:36 GMT expires: - '-1' odata-version: @@ -19372,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19390,7 +14889,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:26 GMT + - Thu, 21 Jan 2021 00:56:38 GMT expires: - '-1' odata-version: @@ -19425,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19443,7 +14942,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:30 GMT + - Thu, 21 Jan 2021 00:56:40 GMT expires: - '-1' odata-version: @@ -19478,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19496,7 +14995,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:32 GMT + - Thu, 21 Jan 2021 00:56:43 GMT expires: - '-1' odata-version: @@ -19531,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19549,7 +15048,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:34 GMT + - Thu, 21 Jan 2021 00:56:45 GMT expires: - '-1' odata-version: @@ -19584,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19602,7 +15101,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:36 GMT + - Thu, 21 Jan 2021 00:56:47 GMT expires: - '-1' odata-version: @@ -19637,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19655,7 +15154,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:39 GMT + - Thu, 21 Jan 2021 00:56:49 GMT expires: - '-1' odata-version: @@ -19690,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19708,7 +15207,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:41 GMT + - Thu, 21 Jan 2021 00:56:52 GMT expires: - '-1' odata-version: @@ -19743,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19761,7 +15260,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:43 GMT + - Thu, 21 Jan 2021 00:56:54 GMT expires: - '-1' odata-version: @@ -19796,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19814,7 +15313,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:46 GMT + - Thu, 21 Jan 2021 00:56:56 GMT expires: - '-1' odata-version: @@ -19849,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19867,7 +15366,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:48 GMT + - Thu, 21 Jan 2021 00:56:59 GMT expires: - '-1' odata-version: @@ -19902,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19920,7 +15419,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:50 GMT + - Thu, 21 Jan 2021 00:57:01 GMT expires: - '-1' odata-version: @@ -19955,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19973,7 +15472,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:52 GMT + - Thu, 21 Jan 2021 00:57:03 GMT expires: - '-1' odata-version: @@ -20008,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20026,7 +15525,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:55 GMT + - Thu, 21 Jan 2021 00:57:05 GMT expires: - '-1' odata-version: @@ -20061,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20079,7 +15578,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:57 GMT + - Thu, 21 Jan 2021 00:57:08 GMT expires: - '-1' odata-version: @@ -20114,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20132,7 +15631,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:59 GMT + - Thu, 21 Jan 2021 00:57:10 GMT expires: - '-1' odata-version: @@ -20167,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20185,7 +15684,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:02 GMT + - Thu, 21 Jan 2021 00:57:12 GMT expires: - '-1' odata-version: @@ -20220,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20238,7 +15737,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:04 GMT + - Thu, 21 Jan 2021 00:57:15 GMT expires: - '-1' odata-version: @@ -20273,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20291,7 +15790,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:06 GMT + - Thu, 21 Jan 2021 00:57:17 GMT expires: - '-1' odata-version: @@ -20326,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20344,7 +15843,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:08 GMT + - Thu, 21 Jan 2021 00:57:19 GMT expires: - '-1' odata-version: @@ -20379,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20397,7 +15896,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:11 GMT + - Thu, 21 Jan 2021 00:57:21 GMT expires: - '-1' odata-version: @@ -20432,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20450,7 +15949,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:13 GMT + - Thu, 21 Jan 2021 00:57:24 GMT expires: - '-1' odata-version: @@ -20485,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20503,7 +16002,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:15 GMT + - Thu, 21 Jan 2021 00:57:26 GMT expires: - '-1' odata-version: @@ -20538,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20556,7 +16055,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:18 GMT + - Thu, 21 Jan 2021 00:57:28 GMT expires: - '-1' odata-version: @@ -20591,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20609,7 +16108,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:20 GMT + - Thu, 21 Jan 2021 00:57:31 GMT expires: - '-1' odata-version: @@ -20644,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20662,7 +16161,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:22 GMT + - Thu, 21 Jan 2021 00:57:33 GMT expires: - '-1' odata-version: @@ -20697,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20715,7 +16214,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:24 GMT + - Thu, 21 Jan 2021 00:57:35 GMT expires: - '-1' odata-version: @@ -20750,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20768,7 +16267,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:27 GMT + - Thu, 21 Jan 2021 00:57:37 GMT expires: - '-1' odata-version: @@ -20803,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20821,7 +16320,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:29 GMT + - Thu, 21 Jan 2021 00:57:40 GMT expires: - '-1' odata-version: @@ -20856,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20874,7 +16373,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:31 GMT + - Thu, 21 Jan 2021 00:57:42 GMT expires: - '-1' odata-version: @@ -20909,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20927,7 +16426,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:34 GMT + - Thu, 21 Jan 2021 00:57:44 GMT expires: - '-1' odata-version: @@ -20962,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20980,7 +16479,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:36 GMT + - Thu, 21 Jan 2021 00:57:47 GMT expires: - '-1' odata-version: @@ -21015,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21033,7 +16532,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:38 GMT + - Thu, 21 Jan 2021 00:57:49 GMT expires: - '-1' odata-version: @@ -21068,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21086,7 +16585,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:41 GMT + - Thu, 21 Jan 2021 00:57:51 GMT expires: - '-1' odata-version: @@ -21121,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21139,7 +16638,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:43 GMT + - Thu, 21 Jan 2021 00:57:53 GMT expires: - '-1' odata-version: @@ -21174,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21192,7 +16691,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:45 GMT + - Thu, 21 Jan 2021 00:57:56 GMT expires: - '-1' odata-version: @@ -21227,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21245,7 +16744,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:48 GMT + - Thu, 21 Jan 2021 00:57:58 GMT expires: - '-1' odata-version: @@ -21280,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21298,7 +16797,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:50 GMT + - Thu, 21 Jan 2021 00:58:00 GMT expires: - '-1' odata-version: @@ -21333,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21351,7 +16850,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:52 GMT + - Thu, 21 Jan 2021 00:58:02 GMT expires: - '-1' odata-version: @@ -21386,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21404,7 +16903,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:54 GMT + - Thu, 21 Jan 2021 00:58:05 GMT expires: - '-1' odata-version: @@ -21439,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21457,7 +16956,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:57 GMT + - Thu, 21 Jan 2021 00:58:07 GMT expires: - '-1' odata-version: @@ -21492,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21510,7 +17009,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:59 GMT + - Thu, 21 Jan 2021 00:58:09 GMT expires: - '-1' odata-version: @@ -21545,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21563,7 +17062,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:01 GMT + - Thu, 21 Jan 2021 00:58:12 GMT expires: - '-1' odata-version: @@ -21598,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21616,7 +17115,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:04 GMT + - Thu, 21 Jan 2021 00:58:14 GMT expires: - '-1' odata-version: @@ -21651,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21669,7 +17168,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:06 GMT + - Thu, 21 Jan 2021 00:58:16 GMT expires: - '-1' odata-version: @@ -21704,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21722,7 +17221,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:08 GMT + - Thu, 21 Jan 2021 00:58:18 GMT expires: - '-1' odata-version: @@ -21757,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21775,7 +17274,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:10 GMT + - Thu, 21 Jan 2021 00:58:21 GMT expires: - '-1' odata-version: @@ -21810,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21828,7 +17327,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:13 GMT + - Thu, 21 Jan 2021 00:58:23 GMT expires: - '-1' odata-version: @@ -21863,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21881,7 +17380,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:15 GMT + - Thu, 21 Jan 2021 00:58:25 GMT expires: - '-1' odata-version: @@ -21916,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21934,7 +17433,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:17 GMT + - Thu, 21 Jan 2021 00:58:28 GMT expires: - '-1' odata-version: @@ -21969,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21987,7 +17486,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:20 GMT + - Thu, 21 Jan 2021 00:58:30 GMT expires: - '-1' odata-version: @@ -22022,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22040,7 +17539,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:23 GMT + - Thu, 21 Jan 2021 00:58:32 GMT expires: - '-1' odata-version: @@ -22075,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22093,7 +17592,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:25 GMT + - Thu, 21 Jan 2021 00:58:34 GMT expires: - '-1' odata-version: @@ -22128,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22146,7 +17645,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:28 GMT + - Thu, 21 Jan 2021 00:58:37 GMT expires: - '-1' odata-version: @@ -22181,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22199,7 +17698,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:30 GMT + - Thu, 21 Jan 2021 00:58:39 GMT expires: - '-1' odata-version: @@ -22234,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22252,7 +17751,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:32 GMT + - Thu, 21 Jan 2021 00:58:41 GMT expires: - '-1' odata-version: @@ -22287,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22305,7 +17804,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:35 GMT + - Thu, 21 Jan 2021 00:58:44 GMT expires: - '-1' odata-version: @@ -22340,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22358,7 +17857,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:37 GMT + - Thu, 21 Jan 2021 00:58:46 GMT expires: - '-1' odata-version: @@ -22393,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22411,7 +17910,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:39 GMT + - Thu, 21 Jan 2021 00:58:48 GMT expires: - '-1' odata-version: @@ -22446,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22464,7 +17963,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:41 GMT + - Thu, 21 Jan 2021 00:58:50 GMT expires: - '-1' odata-version: @@ -22499,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22517,7 +18016,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:44 GMT + - Thu, 21 Jan 2021 00:58:54 GMT expires: - '-1' odata-version: @@ -22552,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22570,7 +18069,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:46 GMT + - Thu, 21 Jan 2021 00:58:56 GMT expires: - '-1' odata-version: @@ -22605,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22623,7 +18122,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:48 GMT + - Thu, 21 Jan 2021 00:58:58 GMT expires: - '-1' odata-version: @@ -22658,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22676,7 +18175,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:51 GMT + - Thu, 21 Jan 2021 00:59:01 GMT expires: - '-1' odata-version: @@ -22711,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22729,7 +18228,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:53 GMT + - Thu, 21 Jan 2021 00:59:04 GMT expires: - '-1' odata-version: @@ -22764,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22782,7 +18281,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:55 GMT + - Thu, 21 Jan 2021 00:59:06 GMT expires: - '-1' odata-version: @@ -22817,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22835,7 +18334,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:58 GMT + - Thu, 21 Jan 2021 00:59:09 GMT expires: - '-1' odata-version: @@ -22870,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22888,7 +18387,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:00 GMT + - Thu, 21 Jan 2021 00:59:11 GMT expires: - '-1' odata-version: @@ -22923,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22941,7 +18440,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:02 GMT + - Thu, 21 Jan 2021 00:59:13 GMT expires: - '-1' odata-version: @@ -22976,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22994,7 +18493,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:04 GMT + - Thu, 21 Jan 2021 00:59:15 GMT expires: - '-1' odata-version: @@ -23029,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23047,7 +18546,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:07 GMT + - Thu, 21 Jan 2021 00:59:18 GMT expires: - '-1' odata-version: @@ -23082,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23100,7 +18599,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:10 GMT + - Thu, 21 Jan 2021 00:59:20 GMT expires: - '-1' odata-version: @@ -23135,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23153,7 +18652,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:12 GMT + - Thu, 21 Jan 2021 00:59:22 GMT expires: - '-1' odata-version: @@ -23188,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23206,7 +18705,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:15 GMT + - Thu, 21 Jan 2021 00:59:24 GMT expires: - '-1' odata-version: @@ -23241,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23259,7 +18758,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:17 GMT + - Thu, 21 Jan 2021 00:59:27 GMT expires: - '-1' odata-version: @@ -23294,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23312,7 +18811,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:19 GMT + - Thu, 21 Jan 2021 00:59:29 GMT expires: - '-1' odata-version: @@ -23347,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23365,7 +18864,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:21 GMT + - Thu, 21 Jan 2021 00:59:31 GMT expires: - '-1' odata-version: @@ -23400,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23418,7 +18917,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:24 GMT + - Thu, 21 Jan 2021 00:59:34 GMT expires: - '-1' odata-version: @@ -23453,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23471,7 +18970,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:26 GMT + - Thu, 21 Jan 2021 00:59:36 GMT expires: - '-1' odata-version: @@ -23506,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23524,7 +19023,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:28 GMT + - Thu, 21 Jan 2021 00:59:38 GMT expires: - '-1' odata-version: @@ -23559,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23577,7 +19076,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:31 GMT + - Thu, 21 Jan 2021 00:59:40 GMT expires: - '-1' odata-version: @@ -23612,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23630,7 +19129,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:33 GMT + - Thu, 21 Jan 2021 00:59:43 GMT expires: - '-1' odata-version: @@ -23665,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23683,7 +19182,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:35 GMT + - Thu, 21 Jan 2021 00:59:45 GMT expires: - '-1' odata-version: @@ -23718,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23736,7 +19235,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:37 GMT + - Thu, 21 Jan 2021 00:59:47 GMT expires: - '-1' odata-version: @@ -23771,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23789,7 +19288,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:40 GMT + - Thu, 21 Jan 2021 00:59:50 GMT expires: - '-1' odata-version: @@ -23824,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23842,7 +19341,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:42 GMT + - Thu, 21 Jan 2021 00:59:52 GMT expires: - '-1' odata-version: @@ -23877,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23895,7 +19394,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:44 GMT + - Thu, 21 Jan 2021 00:59:54 GMT expires: - '-1' odata-version: @@ -23930,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23948,7 +19447,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:47 GMT + - Thu, 21 Jan 2021 00:59:56 GMT expires: - '-1' odata-version: @@ -23983,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24001,7 +19500,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:49 GMT + - Thu, 21 Jan 2021 00:59:59 GMT expires: - '-1' odata-version: @@ -24036,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24054,7 +19553,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:51 GMT + - Thu, 21 Jan 2021 01:00:01 GMT expires: - '-1' odata-version: @@ -24089,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24107,7 +19606,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:53 GMT + - Thu, 21 Jan 2021 01:00:03 GMT expires: - '-1' odata-version: @@ -24142,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24160,7 +19659,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:56 GMT + - Thu, 21 Jan 2021 01:00:06 GMT expires: - '-1' odata-version: @@ -24195,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24213,7 +19712,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:58 GMT + - Thu, 21 Jan 2021 01:00:08 GMT expires: - '-1' odata-version: @@ -24248,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24266,7 +19765,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:00 GMT + - Thu, 21 Jan 2021 01:00:10 GMT expires: - '-1' odata-version: @@ -24301,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24319,7 +19818,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:03 GMT + - Thu, 21 Jan 2021 01:00:12 GMT expires: - '-1' odata-version: @@ -24354,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"0d019ba2-73a6-42e7-b8bf-953396e51992\"\r\n + string: "{\r\n \"name\":\"631f6eb2-56a5-457f-9898-00fc2e09d10f\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"1a01120b-91aa-4c80-b851-751f8c6c3b7d\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24372,7 +19871,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:05 GMT + - Thu, 21 Jan 2021 01:00:15 GMT expires: - '-1' odata-version: @@ -24407,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?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\":\"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/c5b6ec64-2928-4eb3-9cf4-3bb37f4c4e14?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/631f6eb2-56a5-457f-9898-00fc2e09d10f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24425,7 +19924,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:07 GMT + - Thu, 21 Jan 2021 01:00:17 GMT expires: - '-1' odata-version: @@ -24460,16 +19959,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.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/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-21T00:45:56.7997168Z\",\"lastModified\":\"2021-01-21T01:00:16.9655848Z\"\r\n \ }\r\n}" headers: cache-control: @@ -24479,7 +19978,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:10 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 00e8df5a3d1..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:46:03 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 @@ -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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:46:04 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.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/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-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/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/400b14eb-3861-4d48-b62f-41aecec4a721?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 + - 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/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/400b14eb-3861-4d48-b62f-41aecec4a721?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.18.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/400b14eb-3861-4d48-b62f-41aecec4a721?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\":\"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/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/400b14eb-3861-4d48-b62f-41aecec4a721?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 + - Thu, 21 Jan 2021 00:46:07 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.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=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-21T00:46:05.2851091Z\",\"lastModified\":\"2021-01-21T00:46:07.2763831Z\"\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 + - Thu, 21 Jan 2021 00:46:07 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.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/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/35c44f86-f864-47e7-8399-83ec9a1ed775?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:44:32 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/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/35c44f86-f864-47e7-8399-83ec9a1ed775?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.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/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-21T00:46:05.2851091Z\",\"lastModified\":\"2021-01-21T00:46:09.4605164Z\"\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 + - 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 bdc463accc0..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:48:49 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' 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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:48:50 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.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/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-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/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - 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/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-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/70712045-40d7-4ac7-8791-b2805b2055b1?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' + - '1196' 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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:48: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:48: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/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,11 +316,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:52 GMT + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:49: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/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,11 +3125,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:45 GMT + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:50: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:51: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/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,11 +5934,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:38 GMT + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:52: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:53: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/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,11 +8743,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:31 GMT + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:54: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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 + - Thu, 21 Jan 2021 00:55: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: @@ -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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10326,11 +9962,6210 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:21 GMT + - Thu, 21 Jan 2021 00:55: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.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:55: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.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:55: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/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:55: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/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:55: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/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:55: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.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:55: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.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:55: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.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:55: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.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:55: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.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:55: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 --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-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:55: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 --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-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:55: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/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:55: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.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:55: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.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:55: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.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:55: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:56: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:56: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:56: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:56: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:56: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:56: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:56: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/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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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.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:56: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/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:56: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 --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-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:56: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/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:56: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/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:56: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/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:56: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:56: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/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:56: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/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:57: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/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:57: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/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:57: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:57: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:57: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:57: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/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:57: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/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:57: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/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:57: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/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:57: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/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:57: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/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:57: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/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:57: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.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:57: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/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:57: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/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:57: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.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:57: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.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:57: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.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:57: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.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:57: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.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:57: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.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:57: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 --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-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:57: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 --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-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:57: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.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:57: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.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:57: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.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:57: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/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:57: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/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:58: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/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:58: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/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:58: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/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:58: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.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:58: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.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:58: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.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:58: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.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:58: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.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:58: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.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:58: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/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:58: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/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:58: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/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:58: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.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:58: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/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:58: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/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:58: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/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:58: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/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:58: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/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:58: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/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:58: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/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:58: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/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:58: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 --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-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:58: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 --scale-units --auto-start + User-Agent: + - python/3.8.2 (Windows-10-10.0.19041-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:58: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/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:58: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/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:58: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/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:58: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:58: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/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:58: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/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:59: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/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:59: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/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:59: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:59: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:59: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:59: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/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:59: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/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:59: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/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:59: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/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:59: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/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:59: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.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:59: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.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:59: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.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:59: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/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:59: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: @@ -10363,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10381,11 +16216,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:24 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10418,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10436,11 +16269,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:26 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10473,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10491,11 +16322,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:28 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10528,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10546,11 +16375,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:30 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10583,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10601,11 +16428,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:32 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10638,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10656,11 +16481,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:34 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10693,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10711,11 +16534,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:36 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10748,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10766,11 +16587,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:38 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10803,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10821,11 +16640,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:41 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10858,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10876,11 +16693,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:43 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10913,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10931,11 +16746,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:45 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -10968,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10986,11 +16799,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:47 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -11023,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11041,11 +16852,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:49 GMT + - Thu, 21 Jan 2021 00:59: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: @@ -11078,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11096,11 +16905,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:51 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11133,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11151,11 +16958,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:53 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11188,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11206,11 +17011,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:55 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11243,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11261,11 +17064,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:58 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11298,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11316,11 +17117,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:00 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11353,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11371,11 +17170,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:02 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11408,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11426,11 +17223,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:04 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11463,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11481,11 +17276,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:06 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11518,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11536,11 +17329,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:08 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11573,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11591,11 +17382,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:10 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11628,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11646,11 +17435,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:12 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11683,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11701,11 +17488,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:15 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11738,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11756,11 +17541,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:17 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11793,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11811,11 +17594,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:19 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11848,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11866,11 +17647,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:21 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11903,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11921,11 +17700,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:23 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -11958,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/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,11 +17753,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:25 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12013,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12031,11 +17806,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:27 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12068,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12086,11 +17859,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:29 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12123,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12141,11 +17912,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:31 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12178,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12196,11 +17965,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:34 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12233,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12251,11 +18018,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:36 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12288,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12306,11 +18071,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:38 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12343,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12361,11 +18124,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:40 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12398,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12416,11 +18177,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:42 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12453,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12471,11 +18230,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:44 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12508,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12526,11 +18283,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:46 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12563,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12581,11 +18336,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:48 GMT + - Thu, 21 Jan 2021 01:00: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: @@ -12618,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12636,11 +18389,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:51 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -12673,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12691,11 +18442,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:53 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -12728,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12746,11 +18495,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:55 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -12783,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12801,11 +18548,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:58 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -12838,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12856,11 +18601,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:00 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -12893,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12911,11 +18654,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:02 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -12948,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12966,11 +18707,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:05 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13003,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13021,11 +18760,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:07 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13058,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13076,11 +18813,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:09 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13113,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13131,11 +18866,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:11 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13168,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13186,11 +18919,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:13 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13223,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13241,11 +18972,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:15 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13278,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13296,11 +19025,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:17 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13333,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13351,11 +19078,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:19 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13388,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13406,11 +19131,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:21 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13443,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13461,11 +19184,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:24 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13498,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13516,11 +19237,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:26 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13553,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13571,11 +19290,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:28 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13608,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13626,11 +19343,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:30 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13663,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13681,11 +19396,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:32 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13718,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13736,11 +19449,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:34 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13773,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13791,11 +19502,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:36 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13828,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13846,11 +19555,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:39 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13883,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13901,11 +19608,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:41 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13938,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13956,11 +19661,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:43 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -13993,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14011,11 +19714,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:45 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -14048,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14066,11 +19767,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:47 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -14103,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14121,11 +19820,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:49 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -14158,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14176,11 +19873,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:51 GMT + - Thu, 21 Jan 2021 01:01: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: @@ -14213,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14231,11 +19926,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:55 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14268,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14286,11 +19979,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:57 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14323,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14341,11 +20032,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:59 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14378,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14396,11 +20085,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:01 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14433,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14451,11 +20138,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:03 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14488,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14506,11 +20191,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:05 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14543,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14561,11 +20244,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:07 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14598,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14616,11 +20297,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:09 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14653,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14671,11 +20350,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:12 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14708,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14726,11 +20403,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:14 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14763,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14781,11 +20456,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:16 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14818,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14836,11 +20509,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:18 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14873,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/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,11 +20562,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:20 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14928,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14946,11 +20615,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:22 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -14983,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15001,11 +20668,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:24 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15038,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15056,11 +20721,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:26 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15093,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15111,11 +20774,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:28 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15148,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15166,11 +20827,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:31 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15203,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15221,11 +20880,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:33 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15258,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15276,11 +20933,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:35 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15313,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15331,11 +20986,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:37 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15368,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15386,11 +21039,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:39 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15423,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15441,11 +21092,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:41 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15478,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15496,11 +21145,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:43 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15533,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15551,11 +21198,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:46 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15588,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15606,11 +21251,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:48 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15643,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15661,11 +21304,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:50 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15698,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15716,11 +21357,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:52 GMT + - Thu, 21 Jan 2021 01:02: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: @@ -15753,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15771,11 +21410,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:54 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -15808,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15826,11 +21463,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:56 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -15863,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15881,11 +21516,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:58 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -15918,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15936,11 +21569,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:00 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -15973,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15991,11 +21622,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:02 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16028,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16046,11 +21675,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:05 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16083,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16101,11 +21728,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:07 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16138,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16156,11 +21781,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:09 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16193,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16211,11 +21834,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:11 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16248,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16266,11 +21887,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:13 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16303,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16321,11 +21940,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:15 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16358,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16376,11 +21993,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:17 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16413,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16431,11 +22046,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:19 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16468,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16486,11 +22099,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:22 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16523,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16541,11 +22152,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:24 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16578,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16596,11 +22205,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:26 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16633,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16651,11 +22258,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:28 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16688,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16706,11 +22311,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:30 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16743,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16761,11 +22364,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:32 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16798,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16816,11 +22417,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:34 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16853,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16871,11 +22470,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:36 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16908,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16926,11 +22523,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:39 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -16963,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16981,11 +22576,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:41 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -17018,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17036,11 +22629,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:43 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -17073,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17091,11 +22682,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:45 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -17128,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17146,11 +22735,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:47 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -17183,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17201,11 +22788,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:49 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -17238,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17256,11 +22841,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:51 GMT + - Thu, 21 Jan 2021 01:03: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: @@ -17293,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17311,11 +22894,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:53 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17348,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17366,11 +22947,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:56 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17403,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17421,11 +23000,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:58 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17458,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17476,11 +23053,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:00 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17513,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17531,11 +23106,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:02 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17568,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17586,11 +23159,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:04 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17623,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17641,11 +23212,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:06 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17678,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17696,11 +23265,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:08 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17733,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17751,11 +23318,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:10 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17788,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/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,11 +23371,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:12 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17843,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17861,11 +23424,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:15 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17898,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17916,11 +23477,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:17 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -17953,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17971,11 +23530,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:19 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18008,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18026,11 +23583,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:21 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18063,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18081,11 +23636,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:23 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18118,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18136,11 +23689,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:25 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18173,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18191,11 +23742,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:27 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18228,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18246,11 +23795,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:29 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18283,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18301,11 +23848,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:32 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18338,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18356,11 +23901,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:34 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18393,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18411,11 +23954,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:36 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18448,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18466,11 +24007,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:39 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18503,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18521,11 +24060,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:41 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18558,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18576,11 +24113,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:43 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18613,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18631,11 +24166,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:45 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18668,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18686,11 +24219,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:47 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18723,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18741,11 +24272,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:50 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18778,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18796,11 +24325,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:52 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18833,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18851,11 +24378,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:54 GMT + - Thu, 21 Jan 2021 01:04: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: @@ -18888,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18906,11 +24431,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:56 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -18943,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18961,11 +24484,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:58 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -18998,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19016,11 +24537,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:00 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19053,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19071,11 +24590,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:03 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19108,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19126,11 +24643,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:05 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19163,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19181,11 +24696,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:07 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19218,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19236,11 +24749,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:09 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19273,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19291,11 +24802,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:11 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19328,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19346,11 +24855,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:13 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19383,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19401,11 +24908,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:15 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19438,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19456,11 +24961,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:18 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19493,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19511,11 +25014,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:20 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19548,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19566,11 +25067,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:22 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19603,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19621,11 +25120,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:24 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19658,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19676,11 +25173,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:26 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19713,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19731,11 +25226,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:28 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19768,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19786,11 +25279,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:30 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19823,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19841,11 +25332,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:32 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19878,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19896,11 +25385,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:34 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19933,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19951,11 +25438,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:37 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -19988,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20006,11 +25491,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:39 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -20043,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20061,11 +25544,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:41 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -20098,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20116,11 +25597,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:43 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -20153,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20171,11 +25650,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:45 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -20208,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20226,11 +25703,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:47 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -20263,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20281,11 +25756,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:49 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -20318,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20336,11 +25809,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:51 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -20373,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20391,11 +25862,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:53 GMT + - Thu, 21 Jan 2021 01:05: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: @@ -20428,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20446,11 +25915,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:56 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20483,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20501,11 +25968,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:58 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20538,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20556,11 +26021,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:00 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20593,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20611,11 +26074,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:02 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20648,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20666,11 +26127,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:04 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20703,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/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,11 +26180,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:06 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20758,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20776,11 +26233,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:08 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20813,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20831,11 +26286,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:10 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20868,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20886,11 +26339,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:13 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20923,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20941,11 +26392,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:15 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -20978,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20996,11 +26445,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:17 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21033,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21051,11 +26498,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:19 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21088,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21106,11 +26551,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:21 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21143,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21161,11 +26604,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:23 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21198,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21216,11 +26657,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:25 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21253,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21271,11 +26710,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:27 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21308,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21326,11 +26763,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:30 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21363,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21381,11 +26816,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:32 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21418,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21436,11 +26869,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:34 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21473,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21491,11 +26922,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:36 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21528,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21546,11 +26975,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:38 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21583,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21601,11 +27028,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:40 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21638,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21656,11 +27081,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:42 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21693,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21711,11 +27134,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:44 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21748,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21766,11 +27187,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:46 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21803,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21821,11 +27240,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:49 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21858,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21876,11 +27293,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:51 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21913,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21931,11 +27346,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:53 GMT + - Thu, 21 Jan 2021 01:06: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: @@ -21968,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21986,11 +27399,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:55 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22023,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22041,11 +27452,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:57 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22078,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22096,11 +27505,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:59 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22133,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22151,11 +27558,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:01 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22188,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22206,11 +27611,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:04 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22243,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22261,11 +27664,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:06 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22298,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22316,11 +27717,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:08 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22353,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22371,11 +27770,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:10 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22408,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22426,11 +27823,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:12 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22463,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22481,11 +27876,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:14 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22518,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22536,11 +27929,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:16 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22573,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22591,11 +27982,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:18 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22628,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22646,11 +28035,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:21 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22683,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22701,11 +28088,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:23 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22738,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22756,11 +28141,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:25 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22793,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22811,11 +28194,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:27 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22848,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22866,11 +28247,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:29 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22903,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22921,11 +28300,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:31 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -22958,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22976,11 +28353,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:33 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23013,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23031,11 +28406,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:35 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23068,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23086,11 +28459,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:38 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23123,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23141,11 +28512,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:40 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23178,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23196,11 +28565,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:43 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23233,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23251,11 +28618,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:45 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23288,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23306,11 +28671,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:47 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23343,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23361,11 +28724,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:49 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23398,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23416,11 +28777,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:51 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23453,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23471,11 +28830,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:53 GMT + - Thu, 21 Jan 2021 01:07: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: @@ -23508,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23526,11 +28883,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:56 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -23563,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23581,11 +28936,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:58 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -23618,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/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,11 +28989,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:00 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -23673,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23691,11 +29042,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:02 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -23728,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23746,11 +29095,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:04 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -23783,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23801,11 +29148,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:06 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -23838,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23856,11 +29201,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:08 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -23893,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23911,11 +29254,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:10 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -23948,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23966,11 +29307,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:13 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -24003,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24021,11 +29360,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:15 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -24058,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24076,11 +29413,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:17 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -24113,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24131,11 +29466,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:19 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -24168,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24186,11 +29519,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:21 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -24223,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"046e17d2-8a94-4d7a-a03f-9075eb4edafb\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"efe04a7c-bbdf-46e4-8608-b54a7d23947d\"\r\n + string: "{\r\n \"name\":\"70712045-40d7-4ac7-8791-b2805b2055b1\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"c8ae5743-f2dc-4651-a360-097f0a260c54\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24241,11 +29572,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:23 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -24278,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?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\":\"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/046e17d2-8a94-4d7a-a03f-9075eb4edafb?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/70712045-40d7-4ac7-8791-b2805b2055b1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24296,11 +29625,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:25 GMT + - Thu, 21 Jan 2021 01:08: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: @@ -24333,14 +29660,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.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=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-21T00:48:52.9252316Z\",\"lastModified\":\"2021-01-21T01:08:28.2322144Z\"\r\n \ }\r\n}" headers: cache-control: @@ -24350,7 +29677,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:25 GMT + - Thu, 21 Jan 2021 01:08:30 GMT expires: - '-1' odata-version: @@ -24387,27 +29714,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.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/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/e02d91e7-ad99-47dd-b82b-8ff9352fb491?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 22:00:27 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/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/e02d91e7-ad99-47dd-b82b-8ff9352fb491?api-version=2020-05-01 pragma: - no-cache server: @@ -24436,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.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/e02d91e7-ad99-47dd-b82b-8ff9352fb491?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\":\"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/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/e02d91e7-ad99-47dd-b82b-8ff9352fb491?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24454,11 +29781,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:29 GMT + - Thu, 21 Jan 2021 01:08:34 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,26 +29816,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.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/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-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: - - Fri, 25 Sep 2020 22:00:30 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 b4144d0ad68..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:38 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.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?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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:45:38 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.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/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-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/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?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 + - 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/767dd222-cf84-4ffc-9143-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/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -169,10 +173,2077 @@ 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: + 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: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/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: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: @@ -188,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -206,7 +2277,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:52 GMT + - Thu, 21 Jan 2021 00:47:05 GMT expires: - '-1' odata-version: @@ -241,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -259,7 +2330,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:54 GMT + - Thu, 21 Jan 2021 00:47:08 GMT expires: - '-1' odata-version: @@ -294,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -312,7 +2383,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:56 GMT + - Thu, 21 Jan 2021 00:47:10 GMT expires: - '-1' odata-version: @@ -347,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -365,7 +2436,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:58 GMT + - Thu, 21 Jan 2021 00:47:12 GMT expires: - '-1' odata-version: @@ -400,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -418,7 +2489,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:00 GMT + - Thu, 21 Jan 2021 00:47:14 GMT expires: - '-1' odata-version: @@ -453,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -471,7 +2542,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:03 GMT + - Thu, 21 Jan 2021 00:47:16 GMT expires: - '-1' odata-version: @@ -506,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -524,7 +2595,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:05 GMT + - Thu, 21 Jan 2021 00:47:18 GMT expires: - '-1' odata-version: @@ -559,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -577,7 +2648,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:07 GMT + - Thu, 21 Jan 2021 00:47:20 GMT expires: - '-1' odata-version: @@ -612,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -630,7 +2701,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:10 GMT + - Thu, 21 Jan 2021 00:47:22 GMT expires: - '-1' odata-version: @@ -665,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -683,7 +2754,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:12 GMT + - Thu, 21 Jan 2021 00:47:24 GMT expires: - '-1' odata-version: @@ -718,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -736,7 +2807,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:14 GMT + - Thu, 21 Jan 2021 00:47:27 GMT expires: - '-1' odata-version: @@ -771,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -789,7 +2860,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:16 GMT + - Thu, 21 Jan 2021 00:47:29 GMT expires: - '-1' odata-version: @@ -824,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -842,7 +2913,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:18 GMT + - Thu, 21 Jan 2021 00:47:31 GMT expires: - '-1' odata-version: @@ -877,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -895,7 +2966,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:20 GMT + - Thu, 21 Jan 2021 00:47:33 GMT expires: - '-1' odata-version: @@ -930,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -948,7 +3019,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:23 GMT + - Thu, 21 Jan 2021 00:47:35 GMT expires: - '-1' odata-version: @@ -983,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1001,7 +3072,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:25 GMT + - Thu, 21 Jan 2021 00:47:37 GMT expires: - '-1' odata-version: @@ -1036,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1054,7 +3125,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:27 GMT + - Thu, 21 Jan 2021 00:47:39 GMT expires: - '-1' odata-version: @@ -1089,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1107,7 +3178,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:29 GMT + - Thu, 21 Jan 2021 00:47:41 GMT expires: - '-1' odata-version: @@ -1142,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1160,7 +3231,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:31 GMT + - Thu, 21 Jan 2021 00:47:43 GMT expires: - '-1' odata-version: @@ -1195,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1213,7 +3284,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:33 GMT + - Thu, 21 Jan 2021 00:47:46 GMT expires: - '-1' odata-version: @@ -1248,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1266,7 +3337,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:35 GMT + - Thu, 21 Jan 2021 00:47:48 GMT expires: - '-1' odata-version: @@ -1301,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1319,7 +3390,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:37 GMT + - Thu, 21 Jan 2021 00:47:50 GMT expires: - '-1' odata-version: @@ -1354,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1372,7 +3443,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:39 GMT + - Thu, 21 Jan 2021 00:47:52 GMT expires: - '-1' odata-version: @@ -1407,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1425,7 +3496,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:42 GMT + - Thu, 21 Jan 2021 00:47:54 GMT expires: - '-1' odata-version: @@ -1460,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1478,7 +3549,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:44 GMT + - Thu, 21 Jan 2021 00:47:56 GMT expires: - '-1' odata-version: @@ -1513,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1531,7 +3602,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:46 GMT + - Thu, 21 Jan 2021 00:47:58 GMT expires: - '-1' odata-version: @@ -1566,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1584,7 +3655,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:48 GMT + - Thu, 21 Jan 2021 00:48:00 GMT expires: - '-1' odata-version: @@ -1619,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1637,7 +3708,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:50 GMT + - Thu, 21 Jan 2021 00:48:03 GMT expires: - '-1' odata-version: @@ -1672,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1690,7 +3761,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:52 GMT + - Thu, 21 Jan 2021 00:48:05 GMT expires: - '-1' odata-version: @@ -1725,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1743,7 +3814,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:54 GMT + - Thu, 21 Jan 2021 00:48:07 GMT expires: - '-1' odata-version: @@ -1778,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1796,7 +3867,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:56 GMT + - Thu, 21 Jan 2021 00:48:09 GMT expires: - '-1' odata-version: @@ -1831,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1849,7 +3920,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:59 GMT + - Thu, 21 Jan 2021 00:48:11 GMT expires: - '-1' odata-version: @@ -1884,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1902,7 +3973,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:01 GMT + - Thu, 21 Jan 2021 00:48:13 GMT expires: - '-1' odata-version: @@ -1937,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1955,7 +4026,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:03 GMT + - Thu, 21 Jan 2021 00:48:15 GMT expires: - '-1' odata-version: @@ -1990,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2008,7 +4079,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:05 GMT + - Thu, 21 Jan 2021 00:48:17 GMT expires: - '-1' odata-version: @@ -2043,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2061,7 +4132,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:07 GMT + - Thu, 21 Jan 2021 00:48:19 GMT expires: - '-1' odata-version: @@ -2096,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2114,7 +4185,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:09 GMT + - Thu, 21 Jan 2021 00:48:22 GMT expires: - '-1' odata-version: @@ -2149,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2167,7 +4238,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:11 GMT + - Thu, 21 Jan 2021 00:48:24 GMT expires: - '-1' odata-version: @@ -2202,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2220,7 +4291,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:13 GMT + - Thu, 21 Jan 2021 00:48:26 GMT expires: - '-1' odata-version: @@ -2255,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2273,7 +4344,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:16 GMT + - Thu, 21 Jan 2021 00:48:28 GMT expires: - '-1' odata-version: @@ -2308,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2326,7 +4397,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:18 GMT + - Thu, 21 Jan 2021 00:48:30 GMT expires: - '-1' odata-version: @@ -2361,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2379,7 +4450,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:20 GMT + - Thu, 21 Jan 2021 00:48:32 GMT expires: - '-1' odata-version: @@ -2414,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2432,7 +4503,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:22 GMT + - Thu, 21 Jan 2021 00:48:34 GMT expires: - '-1' odata-version: @@ -2467,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2485,7 +4556,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:24 GMT + - Thu, 21 Jan 2021 00:48:36 GMT expires: - '-1' odata-version: @@ -2520,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2538,7 +4609,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:26 GMT + - Thu, 21 Jan 2021 00:48:38 GMT expires: - '-1' odata-version: @@ -2573,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2591,7 +4662,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:28 GMT + - Thu, 21 Jan 2021 00:48:41 GMT expires: - '-1' odata-version: @@ -2626,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2644,7 +4715,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:30 GMT + - Thu, 21 Jan 2021 00:48:43 GMT expires: - '-1' odata-version: @@ -2679,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2697,7 +4768,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:32 GMT + - Thu, 21 Jan 2021 00:48:45 GMT expires: - '-1' odata-version: @@ -2732,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2750,7 +4821,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:35 GMT + - Thu, 21 Jan 2021 00:48:47 GMT expires: - '-1' odata-version: @@ -2785,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2803,7 +4874,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:37 GMT + - Thu, 21 Jan 2021 00:48:49 GMT expires: - '-1' odata-version: @@ -2838,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2856,7 +4927,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:39 GMT + - Thu, 21 Jan 2021 00:48:51 GMT expires: - '-1' odata-version: @@ -2891,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2909,7 +4980,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:41 GMT + - Thu, 21 Jan 2021 00:48:53 GMT expires: - '-1' odata-version: @@ -2944,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -2962,7 +5033,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:43 GMT + - Thu, 21 Jan 2021 00:48:55 GMT expires: - '-1' odata-version: @@ -2997,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3015,7 +5086,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:45 GMT + - Thu, 21 Jan 2021 00:48:57 GMT expires: - '-1' odata-version: @@ -3050,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3068,7 +5139,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:47 GMT + - Thu, 21 Jan 2021 00:49:01 GMT expires: - '-1' odata-version: @@ -3103,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3121,7 +5192,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:50 GMT + - Thu, 21 Jan 2021 00:49:03 GMT expires: - '-1' odata-version: @@ -3156,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3174,7 +5245,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:52 GMT + - Thu, 21 Jan 2021 00:49:05 GMT expires: - '-1' odata-version: @@ -3209,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3227,7 +5298,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:54 GMT + - Thu, 21 Jan 2021 00:49:07 GMT expires: - '-1' odata-version: @@ -3262,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3280,7 +5351,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:56 GMT + - Thu, 21 Jan 2021 00:49:09 GMT expires: - '-1' odata-version: @@ -3315,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3333,7 +5404,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:58 GMT + - Thu, 21 Jan 2021 00:49:11 GMT expires: - '-1' odata-version: @@ -3368,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3386,7 +5457,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:00 GMT + - Thu, 21 Jan 2021 00:49:13 GMT expires: - '-1' odata-version: @@ -3421,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3439,7 +5510,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:02 GMT + - Thu, 21 Jan 2021 00:49:15 GMT expires: - '-1' odata-version: @@ -3474,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3492,7 +5563,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:04 GMT + - Thu, 21 Jan 2021 00:49:17 GMT expires: - '-1' odata-version: @@ -3527,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3545,7 +5616,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:07 GMT + - Thu, 21 Jan 2021 00:49:19 GMT expires: - '-1' odata-version: @@ -3580,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3598,7 +5669,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:09 GMT + - Thu, 21 Jan 2021 00:49:21 GMT expires: - '-1' odata-version: @@ -3633,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3651,7 +5722,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:11 GMT + - Thu, 21 Jan 2021 00:49:24 GMT expires: - '-1' odata-version: @@ -3686,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3704,7 +5775,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:13 GMT + - Thu, 21 Jan 2021 00:49:26 GMT expires: - '-1' odata-version: @@ -3739,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3757,7 +5828,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:15 GMT + - Thu, 21 Jan 2021 00:49:28 GMT expires: - '-1' odata-version: @@ -3792,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3810,7 +5881,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:17 GMT + - Thu, 21 Jan 2021 00:49:30 GMT expires: - '-1' odata-version: @@ -3845,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3863,7 +5934,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:19 GMT + - Thu, 21 Jan 2021 00:49:32 GMT expires: - '-1' odata-version: @@ -3898,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3916,7 +5987,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:21 GMT + - Thu, 21 Jan 2021 00:49:35 GMT expires: - '-1' odata-version: @@ -3951,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -3969,7 +6040,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:23 GMT + - Thu, 21 Jan 2021 00:49:37 GMT expires: - '-1' odata-version: @@ -4004,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4022,7 +6093,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:26 GMT + - Thu, 21 Jan 2021 00:49:39 GMT expires: - '-1' odata-version: @@ -4057,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4075,7 +6146,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:28 GMT + - Thu, 21 Jan 2021 00:49:41 GMT expires: - '-1' odata-version: @@ -4110,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4128,7 +6199,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:31 GMT + - Thu, 21 Jan 2021 00:49:43 GMT expires: - '-1' odata-version: @@ -4163,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4181,7 +6252,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:33 GMT + - Thu, 21 Jan 2021 00:49:45 GMT expires: - '-1' odata-version: @@ -4216,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4234,7 +6305,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:35 GMT + - Thu, 21 Jan 2021 00:49:47 GMT expires: - '-1' odata-version: @@ -4269,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4287,7 +6358,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:37 GMT + - Thu, 21 Jan 2021 00:49:49 GMT expires: - '-1' odata-version: @@ -4322,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4340,7 +6411,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:39 GMT + - Thu, 21 Jan 2021 00:49:51 GMT expires: - '-1' odata-version: @@ -4375,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4393,7 +6464,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:41 GMT + - Thu, 21 Jan 2021 00:49:54 GMT expires: - '-1' odata-version: @@ -4428,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4446,7 +6517,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:43 GMT + - Thu, 21 Jan 2021 00:49:56 GMT expires: - '-1' odata-version: @@ -4481,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4499,7 +6570,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:46 GMT + - Thu, 21 Jan 2021 00:49:58 GMT expires: - '-1' odata-version: @@ -4534,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4552,7 +6623,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:48 GMT + - Thu, 21 Jan 2021 00:50:00 GMT expires: - '-1' odata-version: @@ -4587,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4605,7 +6676,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:50 GMT + - Thu, 21 Jan 2021 00:50:02 GMT expires: - '-1' odata-version: @@ -4640,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4658,7 +6729,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:52 GMT + - Thu, 21 Jan 2021 00:50:04 GMT expires: - '-1' odata-version: @@ -4693,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4711,7 +6782,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:54 GMT + - Thu, 21 Jan 2021 00:50:06 GMT expires: - '-1' odata-version: @@ -4746,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4764,7 +6835,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:56 GMT + - Thu, 21 Jan 2021 00:50:08 GMT expires: - '-1' odata-version: @@ -4799,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4817,7 +6888,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:58 GMT + - Thu, 21 Jan 2021 00:50:11 GMT expires: - '-1' odata-version: @@ -4852,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4870,7 +6941,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:00 GMT + - Thu, 21 Jan 2021 00:50:13 GMT expires: - '-1' odata-version: @@ -4905,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4923,7 +6994,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:02 GMT + - Thu, 21 Jan 2021 00:50:15 GMT expires: - '-1' odata-version: @@ -4958,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -4976,7 +7047,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:05 GMT + - Thu, 21 Jan 2021 00:50:17 GMT expires: - '-1' odata-version: @@ -5011,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5029,7 +7100,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:07 GMT + - Thu, 21 Jan 2021 00:50:19 GMT expires: - '-1' odata-version: @@ -5064,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5082,7 +7153,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:09 GMT + - Thu, 21 Jan 2021 00:50:21 GMT expires: - '-1' odata-version: @@ -5117,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5135,7 +7206,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:11 GMT + - Thu, 21 Jan 2021 00:50:23 GMT expires: - '-1' odata-version: @@ -5170,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5188,7 +7259,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:13 GMT + - Thu, 21 Jan 2021 00:50:25 GMT expires: - '-1' odata-version: @@ -5223,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5241,7 +7312,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:15 GMT + - Thu, 21 Jan 2021 00:50:27 GMT expires: - '-1' odata-version: @@ -5276,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5294,7 +7365,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:17 GMT + - Thu, 21 Jan 2021 00:50:30 GMT expires: - '-1' odata-version: @@ -5329,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5347,7 +7418,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:19 GMT + - Thu, 21 Jan 2021 00:50:32 GMT expires: - '-1' odata-version: @@ -5382,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5400,7 +7471,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:22 GMT + - Thu, 21 Jan 2021 00:50:34 GMT expires: - '-1' odata-version: @@ -5435,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5453,7 +7524,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:24 GMT + - Thu, 21 Jan 2021 00:50:36 GMT expires: - '-1' odata-version: @@ -5488,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5506,7 +7577,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:26 GMT + - Thu, 21 Jan 2021 00:50:38 GMT expires: - '-1' odata-version: @@ -5541,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5559,7 +7630,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:28 GMT + - Thu, 21 Jan 2021 00:50:40 GMT expires: - '-1' odata-version: @@ -5594,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5612,7 +7683,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:30 GMT + - Thu, 21 Jan 2021 00:50:42 GMT expires: - '-1' odata-version: @@ -5647,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5665,7 +7736,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:32 GMT + - Thu, 21 Jan 2021 00:50:44 GMT expires: - '-1' odata-version: @@ -5700,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5718,7 +7789,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:34 GMT + - Thu, 21 Jan 2021 00:50:47 GMT expires: - '-1' odata-version: @@ -5753,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5771,7 +7842,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:36 GMT + - Thu, 21 Jan 2021 00:50:49 GMT expires: - '-1' odata-version: @@ -5806,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5824,7 +7895,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:38 GMT + - Thu, 21 Jan 2021 00:50:51 GMT expires: - '-1' odata-version: @@ -5859,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5877,7 +7948,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:41 GMT + - Thu, 21 Jan 2021 00:50:53 GMT expires: - '-1' odata-version: @@ -5912,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5930,7 +8001,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:43 GMT + - Thu, 21 Jan 2021 00:50:55 GMT expires: - '-1' odata-version: @@ -5965,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -5983,7 +8054,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:45 GMT + - Thu, 21 Jan 2021 00:50:57 GMT expires: - '-1' odata-version: @@ -6018,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6036,7 +8107,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:47 GMT + - Thu, 21 Jan 2021 00:50:59 GMT expires: - '-1' odata-version: @@ -6071,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6089,7 +8160,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:49 GMT + - Thu, 21 Jan 2021 00:51:01 GMT expires: - '-1' odata-version: @@ -6124,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6142,7 +8213,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:51 GMT + - Thu, 21 Jan 2021 00:51:03 GMT expires: - '-1' odata-version: @@ -6177,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6195,7 +8266,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:53 GMT + - Thu, 21 Jan 2021 00:51:06 GMT expires: - '-1' odata-version: @@ -6230,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6248,7 +8319,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:55 GMT + - Thu, 21 Jan 2021 00:51:08 GMT expires: - '-1' odata-version: @@ -6283,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6301,7 +8372,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:48:58 GMT + - Thu, 21 Jan 2021 00:51:10 GMT expires: - '-1' odata-version: @@ -6336,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6354,7 +8425,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:00 GMT + - Thu, 21 Jan 2021 00:51:12 GMT expires: - '-1' odata-version: @@ -6389,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6407,7 +8478,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:02 GMT + - Thu, 21 Jan 2021 00:51:14 GMT expires: - '-1' odata-version: @@ -6442,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6460,7 +8531,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:04 GMT + - Thu, 21 Jan 2021 00:51:16 GMT expires: - '-1' odata-version: @@ -6495,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6513,7 +8584,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:06 GMT + - Thu, 21 Jan 2021 00:51:18 GMT expires: - '-1' odata-version: @@ -6548,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6566,7 +8637,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:08 GMT + - Thu, 21 Jan 2021 00:51:21 GMT expires: - '-1' odata-version: @@ -6601,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6619,7 +8690,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:10 GMT + - Thu, 21 Jan 2021 00:51:24 GMT expires: - '-1' odata-version: @@ -6654,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6672,7 +8743,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:12 GMT + - Thu, 21 Jan 2021 00:51:26 GMT expires: - '-1' odata-version: @@ -6707,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6725,7 +8796,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:15 GMT + - Thu, 21 Jan 2021 00:51:28 GMT expires: - '-1' odata-version: @@ -6760,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6778,7 +8849,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:17 GMT + - Thu, 21 Jan 2021 00:51:30 GMT expires: - '-1' odata-version: @@ -6813,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6831,7 +8902,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:19 GMT + - Thu, 21 Jan 2021 00:51:32 GMT expires: - '-1' odata-version: @@ -6866,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6884,7 +8955,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:21 GMT + - Thu, 21 Jan 2021 00:51:34 GMT expires: - '-1' odata-version: @@ -6919,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6937,7 +9008,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:23 GMT + - Thu, 21 Jan 2021 00:51:36 GMT expires: - '-1' odata-version: @@ -6972,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -6990,7 +9061,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:25 GMT + - Thu, 21 Jan 2021 00:51:38 GMT expires: - '-1' odata-version: @@ -7025,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7043,7 +9114,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:27 GMT + - Thu, 21 Jan 2021 00:51:40 GMT expires: - '-1' odata-version: @@ -7078,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7096,7 +9167,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:29 GMT + - Thu, 21 Jan 2021 00:51:43 GMT expires: - '-1' odata-version: @@ -7131,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7149,7 +9220,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:32 GMT + - Thu, 21 Jan 2021 00:51:45 GMT expires: - '-1' odata-version: @@ -7184,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7202,7 +9273,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:34 GMT + - Thu, 21 Jan 2021 00:51:47 GMT expires: - '-1' odata-version: @@ -7237,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7255,7 +9326,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:36 GMT + - Thu, 21 Jan 2021 00:51:49 GMT expires: - '-1' odata-version: @@ -7290,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7308,7 +9379,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:38 GMT + - Thu, 21 Jan 2021 00:51:51 GMT expires: - '-1' odata-version: @@ -7343,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7361,7 +9432,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:40 GMT + - Thu, 21 Jan 2021 00:51:53 GMT expires: - '-1' odata-version: @@ -7396,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7414,7 +9485,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:42 GMT + - Thu, 21 Jan 2021 00:51:55 GMT expires: - '-1' odata-version: @@ -7449,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7467,7 +9538,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:44 GMT + - Thu, 21 Jan 2021 00:51:57 GMT expires: - '-1' odata-version: @@ -7502,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7520,7 +9591,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:46 GMT + - Thu, 21 Jan 2021 00:52:00 GMT expires: - '-1' odata-version: @@ -7555,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7573,7 +9644,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:49 GMT + - Thu, 21 Jan 2021 00:52:02 GMT expires: - '-1' odata-version: @@ -7608,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7626,7 +9697,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:52 GMT + - Thu, 21 Jan 2021 00:52:04 GMT expires: - '-1' odata-version: @@ -7661,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7679,7 +9750,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:54 GMT + - Thu, 21 Jan 2021 00:52:06 GMT expires: - '-1' odata-version: @@ -7714,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7732,7 +9803,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:56 GMT + - Thu, 21 Jan 2021 00:52:08 GMT expires: - '-1' odata-version: @@ -7767,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7785,7 +9856,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:49:58 GMT + - Thu, 21 Jan 2021 00:52:10 GMT expires: - '-1' odata-version: @@ -7820,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7838,7 +9909,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:00 GMT + - Thu, 21 Jan 2021 00:52:12 GMT expires: - '-1' odata-version: @@ -7873,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7891,7 +9962,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:02 GMT + - Thu, 21 Jan 2021 00:52:14 GMT expires: - '-1' odata-version: @@ -7926,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7944,7 +10015,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:04 GMT + - Thu, 21 Jan 2021 00:52:17 GMT expires: - '-1' odata-version: @@ -7979,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -7997,7 +10068,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:06 GMT + - Thu, 21 Jan 2021 00:52:19 GMT expires: - '-1' odata-version: @@ -8032,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8050,7 +10121,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:08 GMT + - Thu, 21 Jan 2021 00:52:21 GMT expires: - '-1' odata-version: @@ -8085,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8103,7 +10174,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:11 GMT + - Thu, 21 Jan 2021 00:52:23 GMT expires: - '-1' odata-version: @@ -8138,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8156,7 +10227,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:13 GMT + - Thu, 21 Jan 2021 00:52:25 GMT expires: - '-1' odata-version: @@ -8191,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8209,7 +10280,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:15 GMT + - Thu, 21 Jan 2021 00:52:27 GMT expires: - '-1' odata-version: @@ -8244,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8262,7 +10333,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:17 GMT + - Thu, 21 Jan 2021 00:52:29 GMT expires: - '-1' odata-version: @@ -8297,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8315,7 +10386,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:19 GMT + - Thu, 21 Jan 2021 00:52:31 GMT expires: - '-1' odata-version: @@ -8350,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8368,7 +10439,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:21 GMT + - Thu, 21 Jan 2021 00:52:33 GMT expires: - '-1' odata-version: @@ -8403,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8421,7 +10492,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:23 GMT + - Thu, 21 Jan 2021 00:52:36 GMT expires: - '-1' odata-version: @@ -8456,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8474,7 +10545,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:25 GMT + - Thu, 21 Jan 2021 00:52:38 GMT expires: - '-1' odata-version: @@ -8509,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8527,7 +10598,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:28 GMT + - Thu, 21 Jan 2021 00:52:40 GMT expires: - '-1' odata-version: @@ -8562,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8580,7 +10651,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:30 GMT + - Thu, 21 Jan 2021 00:52:42 GMT expires: - '-1' odata-version: @@ -8615,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8633,7 +10704,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:32 GMT + - Thu, 21 Jan 2021 00:52:44 GMT expires: - '-1' odata-version: @@ -8668,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8686,7 +10757,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:34 GMT + - Thu, 21 Jan 2021 00:52:46 GMT expires: - '-1' odata-version: @@ -8721,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8739,7 +10810,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:36 GMT + - Thu, 21 Jan 2021 00:52:48 GMT expires: - '-1' odata-version: @@ -8774,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8792,7 +10863,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:38 GMT + - Thu, 21 Jan 2021 00:52:50 GMT expires: - '-1' odata-version: @@ -8827,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8845,7 +10916,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:40 GMT + - Thu, 21 Jan 2021 00:52:52 GMT expires: - '-1' odata-version: @@ -8880,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8898,7 +10969,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:42 GMT + - Thu, 21 Jan 2021 00:52:55 GMT expires: - '-1' odata-version: @@ -8933,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -8951,7 +11022,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:45 GMT + - Thu, 21 Jan 2021 00:52:57 GMT expires: - '-1' odata-version: @@ -8986,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9004,7 +11075,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:47 GMT + - Thu, 21 Jan 2021 00:52:59 GMT expires: - '-1' odata-version: @@ -9039,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9057,7 +11128,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:49 GMT + - Thu, 21 Jan 2021 00:53:01 GMT expires: - '-1' odata-version: @@ -9092,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9110,7 +11181,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:51 GMT + - Thu, 21 Jan 2021 00:53:03 GMT expires: - '-1' odata-version: @@ -9145,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9163,7 +11234,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:53 GMT + - Thu, 21 Jan 2021 00:53:05 GMT expires: - '-1' odata-version: @@ -9198,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9216,7 +11287,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:55 GMT + - Thu, 21 Jan 2021 00:53:07 GMT expires: - '-1' odata-version: @@ -9251,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9269,7 +11340,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:50:58 GMT + - Thu, 21 Jan 2021 00:53:09 GMT expires: - '-1' odata-version: @@ -9304,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9322,7 +11393,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:00 GMT + - Thu, 21 Jan 2021 00:53:11 GMT expires: - '-1' odata-version: @@ -9357,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9375,7 +11446,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:02 GMT + - Thu, 21 Jan 2021 00:53:14 GMT expires: - '-1' odata-version: @@ -9410,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9428,7 +11499,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:04 GMT + - Thu, 21 Jan 2021 00:53:16 GMT expires: - '-1' odata-version: @@ -9463,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9481,7 +11552,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:06 GMT + - Thu, 21 Jan 2021 00:53:18 GMT expires: - '-1' odata-version: @@ -9516,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9534,7 +11605,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:08 GMT + - Thu, 21 Jan 2021 00:53:20 GMT expires: - '-1' odata-version: @@ -9569,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9587,7 +11658,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:10 GMT + - Thu, 21 Jan 2021 00:53:22 GMT expires: - '-1' odata-version: @@ -9622,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9640,7 +11711,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:12 GMT + - Thu, 21 Jan 2021 00:53:24 GMT expires: - '-1' odata-version: @@ -9675,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9693,7 +11764,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:15 GMT + - Thu, 21 Jan 2021 00:53:27 GMT expires: - '-1' odata-version: @@ -9728,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9746,7 +11817,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:17 GMT + - Thu, 21 Jan 2021 00:53:29 GMT expires: - '-1' odata-version: @@ -9781,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9799,7 +11870,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:19 GMT + - Thu, 21 Jan 2021 00:53:31 GMT expires: - '-1' odata-version: @@ -9834,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9852,7 +11923,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:21 GMT + - Thu, 21 Jan 2021 00:53:33 GMT expires: - '-1' odata-version: @@ -9887,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9905,7 +11976,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:23 GMT + - Thu, 21 Jan 2021 00:53:35 GMT expires: - '-1' odata-version: @@ -9940,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -9958,7 +12029,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:25 GMT + - Thu, 21 Jan 2021 00:53:37 GMT expires: - '-1' odata-version: @@ -9993,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10011,7 +12082,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:27 GMT + - Thu, 21 Jan 2021 00:53:39 GMT expires: - '-1' odata-version: @@ -10046,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10064,7 +12135,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:29 GMT + - Thu, 21 Jan 2021 00:53:42 GMT expires: - '-1' odata-version: @@ -10099,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10117,7 +12188,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:32 GMT + - Thu, 21 Jan 2021 00:53:44 GMT expires: - '-1' odata-version: @@ -10152,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10170,7 +12241,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:34 GMT + - Thu, 21 Jan 2021 00:53:46 GMT expires: - '-1' odata-version: @@ -10205,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10223,7 +12294,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:36 GMT + - Thu, 21 Jan 2021 00:53:48 GMT expires: - '-1' odata-version: @@ -10258,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10276,7 +12347,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:38 GMT + - Thu, 21 Jan 2021 00:53:50 GMT expires: - '-1' odata-version: @@ -10311,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10329,7 +12400,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:40 GMT + - Thu, 21 Jan 2021 00:53:52 GMT expires: - '-1' odata-version: @@ -10364,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10382,7 +12453,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:42 GMT + - Thu, 21 Jan 2021 00:53:54 GMT expires: - '-1' odata-version: @@ -10417,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10435,7 +12506,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:44 GMT + - Thu, 21 Jan 2021 00:53:56 GMT expires: - '-1' odata-version: @@ -10470,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10488,7 +12559,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:46 GMT + - Thu, 21 Jan 2021 00:53:58 GMT expires: - '-1' odata-version: @@ -10523,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10541,7 +12612,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:49 GMT + - Thu, 21 Jan 2021 00:54:01 GMT expires: - '-1' odata-version: @@ -10576,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10594,7 +12665,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:51 GMT + - Thu, 21 Jan 2021 00:54:03 GMT expires: - '-1' odata-version: @@ -10629,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10647,7 +12718,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:53 GMT + - Thu, 21 Jan 2021 00:54:05 GMT expires: - '-1' odata-version: @@ -10682,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10700,7 +12771,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:55 GMT + - Thu, 21 Jan 2021 00:54:07 GMT expires: - '-1' odata-version: @@ -10735,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10753,7 +12824,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:57 GMT + - Thu, 21 Jan 2021 00:54:10 GMT expires: - '-1' odata-version: @@ -10788,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10806,7 +12877,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:51:59 GMT + - Thu, 21 Jan 2021 00:54:12 GMT expires: - '-1' odata-version: @@ -10841,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10859,7 +12930,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:01 GMT + - Thu, 21 Jan 2021 00:54:14 GMT expires: - '-1' odata-version: @@ -10894,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10912,7 +12983,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:03 GMT + - Thu, 21 Jan 2021 00:54:16 GMT expires: - '-1' odata-version: @@ -10947,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -10965,7 +13036,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:06 GMT + - Thu, 21 Jan 2021 00:54:19 GMT expires: - '-1' odata-version: @@ -11000,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11018,7 +13089,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:08 GMT + - Thu, 21 Jan 2021 00:54:21 GMT expires: - '-1' odata-version: @@ -11053,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11071,7 +13142,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:10 GMT + - Thu, 21 Jan 2021 00:54:23 GMT expires: - '-1' odata-version: @@ -11106,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11124,7 +13195,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:12 GMT + - Thu, 21 Jan 2021 00:54:25 GMT expires: - '-1' odata-version: @@ -11159,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11177,7 +13248,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:14 GMT + - Thu, 21 Jan 2021 00:54:27 GMT expires: - '-1' odata-version: @@ -11212,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11230,7 +13301,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:16 GMT + - Thu, 21 Jan 2021 00:54:29 GMT expires: - '-1' odata-version: @@ -11265,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11283,7 +13354,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:18 GMT + - Thu, 21 Jan 2021 00:54:31 GMT expires: - '-1' odata-version: @@ -11318,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11336,7 +13407,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:20 GMT + - Thu, 21 Jan 2021 00:54:33 GMT expires: - '-1' odata-version: @@ -11371,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11389,7 +13460,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:22 GMT + - Thu, 21 Jan 2021 00:54:35 GMT expires: - '-1' odata-version: @@ -11424,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11442,7 +13513,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:25 GMT + - Thu, 21 Jan 2021 00:54:37 GMT expires: - '-1' odata-version: @@ -11477,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11495,7 +13566,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:27 GMT + - Thu, 21 Jan 2021 00:54:40 GMT expires: - '-1' odata-version: @@ -11530,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11548,7 +13619,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:29 GMT + - Thu, 21 Jan 2021 00:54:42 GMT expires: - '-1' odata-version: @@ -11583,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11601,7 +13672,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:31 GMT + - Thu, 21 Jan 2021 00:54:44 GMT expires: - '-1' odata-version: @@ -11636,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11654,7 +13725,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:33 GMT + - Thu, 21 Jan 2021 00:54:46 GMT expires: - '-1' odata-version: @@ -11689,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11707,7 +13778,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:35 GMT + - Thu, 21 Jan 2021 00:54:48 GMT expires: - '-1' odata-version: @@ -11742,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11760,7 +13831,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:37 GMT + - Thu, 21 Jan 2021 00:54:50 GMT expires: - '-1' odata-version: @@ -11795,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11813,7 +13884,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:39 GMT + - Thu, 21 Jan 2021 00:54:52 GMT expires: - '-1' odata-version: @@ -11848,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11866,7 +13937,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:42 GMT + - Thu, 21 Jan 2021 00:54:54 GMT expires: - '-1' odata-version: @@ -11901,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11919,7 +13990,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:44 GMT + - Thu, 21 Jan 2021 00:54:56 GMT expires: - '-1' odata-version: @@ -11954,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -11972,7 +14043,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:46 GMT + - Thu, 21 Jan 2021 00:54:58 GMT expires: - '-1' odata-version: @@ -12007,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12025,7 +14096,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:48 GMT + - Thu, 21 Jan 2021 00:55:01 GMT expires: - '-1' odata-version: @@ -12060,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12078,7 +14149,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:50 GMT + - Thu, 21 Jan 2021 00:55:03 GMT expires: - '-1' odata-version: @@ -12113,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12131,7 +14202,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:52 GMT + - Thu, 21 Jan 2021 00:55:05 GMT expires: - '-1' odata-version: @@ -12166,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12184,7 +14255,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:54 GMT + - Thu, 21 Jan 2021 00:55:07 GMT expires: - '-1' odata-version: @@ -12219,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12237,7 +14308,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:52:58 GMT + - Thu, 21 Jan 2021 00:55:09 GMT expires: - '-1' odata-version: @@ -12272,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12290,7 +14361,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:01 GMT + - Thu, 21 Jan 2021 00:55:11 GMT expires: - '-1' odata-version: @@ -12325,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12343,7 +14414,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:03 GMT + - Thu, 21 Jan 2021 00:55:13 GMT expires: - '-1' odata-version: @@ -12378,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12396,7 +14467,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:05 GMT + - Thu, 21 Jan 2021 00:55:15 GMT expires: - '-1' odata-version: @@ -12431,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12449,7 +14520,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:07 GMT + - Thu, 21 Jan 2021 00:55:18 GMT expires: - '-1' odata-version: @@ -12484,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12502,7 +14573,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:09 GMT + - Thu, 21 Jan 2021 00:55:20 GMT expires: - '-1' odata-version: @@ -12537,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12555,7 +14626,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:11 GMT + - Thu, 21 Jan 2021 00:55:22 GMT expires: - '-1' odata-version: @@ -12590,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12608,7 +14679,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:13 GMT + - Thu, 21 Jan 2021 00:55:24 GMT expires: - '-1' odata-version: @@ -12643,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12661,7 +14732,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:16 GMT + - Thu, 21 Jan 2021 00:55:26 GMT expires: - '-1' odata-version: @@ -12696,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12714,7 +14785,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:18 GMT + - Thu, 21 Jan 2021 00:55:28 GMT expires: - '-1' odata-version: @@ -12749,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12767,7 +14838,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:20 GMT + - Thu, 21 Jan 2021 00:55:30 GMT expires: - '-1' odata-version: @@ -12802,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12820,7 +14891,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:22 GMT + - Thu, 21 Jan 2021 00:55:32 GMT expires: - '-1' odata-version: @@ -12855,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12873,7 +14944,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:24 GMT + - Thu, 21 Jan 2021 00:55:34 GMT expires: - '-1' odata-version: @@ -12908,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12926,7 +14997,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:26 GMT + - Thu, 21 Jan 2021 00:55:36 GMT expires: - '-1' odata-version: @@ -12961,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -12979,7 +15050,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:28 GMT + - Thu, 21 Jan 2021 00:55:39 GMT expires: - '-1' odata-version: @@ -13014,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13032,7 +15103,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:30 GMT + - Thu, 21 Jan 2021 00:55:41 GMT expires: - '-1' odata-version: @@ -13067,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13085,7 +15156,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:32 GMT + - Thu, 21 Jan 2021 00:55:43 GMT expires: - '-1' odata-version: @@ -13120,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13138,7 +15209,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:35 GMT + - Thu, 21 Jan 2021 00:55:45 GMT expires: - '-1' odata-version: @@ -13173,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13191,7 +15262,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:37 GMT + - Thu, 21 Jan 2021 00:55:47 GMT expires: - '-1' odata-version: @@ -13226,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13244,7 +15315,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:39 GMT + - Thu, 21 Jan 2021 00:55:49 GMT expires: - '-1' odata-version: @@ -13279,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13297,7 +15368,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:41 GMT + - Thu, 21 Jan 2021 00:55:51 GMT expires: - '-1' odata-version: @@ -13332,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13350,7 +15421,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:43 GMT + - Thu, 21 Jan 2021 00:55:53 GMT expires: - '-1' odata-version: @@ -13385,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13403,7 +15474,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:45 GMT + - Thu, 21 Jan 2021 00:55:55 GMT expires: - '-1' odata-version: @@ -13438,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13456,7 +15527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:47 GMT + - Thu, 21 Jan 2021 00:55:58 GMT expires: - '-1' odata-version: @@ -13491,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13509,7 +15580,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:49 GMT + - Thu, 21 Jan 2021 00:56:00 GMT expires: - '-1' odata-version: @@ -13544,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13562,7 +15633,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:51 GMT + - Thu, 21 Jan 2021 00:56:02 GMT expires: - '-1' odata-version: @@ -13597,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13615,7 +15686,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:54 GMT + - Thu, 21 Jan 2021 00:56:04 GMT expires: - '-1' odata-version: @@ -13650,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13668,7 +15739,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:56 GMT + - Thu, 21 Jan 2021 00:56:07 GMT expires: - '-1' odata-version: @@ -13703,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13721,7 +15792,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:53:58 GMT + - Thu, 21 Jan 2021 00:56:09 GMT expires: - '-1' odata-version: @@ -13756,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13774,7 +15845,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:00 GMT + - Thu, 21 Jan 2021 00:56:11 GMT expires: - '-1' odata-version: @@ -13809,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13827,7 +15898,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:02 GMT + - Thu, 21 Jan 2021 00:56:13 GMT expires: - '-1' odata-version: @@ -13862,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13880,7 +15951,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:04 GMT + - Thu, 21 Jan 2021 00:56:15 GMT expires: - '-1' odata-version: @@ -13915,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13933,7 +16004,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:06 GMT + - Thu, 21 Jan 2021 00:56:18 GMT expires: - '-1' odata-version: @@ -13968,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -13986,7 +16057,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:09 GMT + - Thu, 21 Jan 2021 00:56:20 GMT expires: - '-1' odata-version: @@ -14021,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14039,7 +16110,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:11 GMT + - Thu, 21 Jan 2021 00:56:22 GMT expires: - '-1' odata-version: @@ -14074,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14092,7 +16163,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:13 GMT + - Thu, 21 Jan 2021 00:56:24 GMT expires: - '-1' odata-version: @@ -14127,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14145,7 +16216,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:15 GMT + - Thu, 21 Jan 2021 00:56:26 GMT expires: - '-1' odata-version: @@ -14180,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14198,7 +16269,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:17 GMT + - Thu, 21 Jan 2021 00:56:28 GMT expires: - '-1' odata-version: @@ -14233,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14251,7 +16322,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:19 GMT + - Thu, 21 Jan 2021 00:56:30 GMT expires: - '-1' odata-version: @@ -14286,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14304,7 +16375,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:21 GMT + - Thu, 21 Jan 2021 00:56:32 GMT expires: - '-1' odata-version: @@ -14339,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14357,7 +16428,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:23 GMT + - Thu, 21 Jan 2021 00:56:35 GMT expires: - '-1' odata-version: @@ -14392,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14410,7 +16481,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:25 GMT + - Thu, 21 Jan 2021 00:56:37 GMT expires: - '-1' odata-version: @@ -14445,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14463,7 +16534,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:28 GMT + - Thu, 21 Jan 2021 00:56:39 GMT expires: - '-1' odata-version: @@ -14498,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14516,7 +16587,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:30 GMT + - Thu, 21 Jan 2021 00:56:41 GMT expires: - '-1' odata-version: @@ -14551,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14569,7 +16640,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:32 GMT + - Thu, 21 Jan 2021 00:56:43 GMT expires: - '-1' odata-version: @@ -14604,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14622,7 +16693,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:34 GMT + - Thu, 21 Jan 2021 00:56:45 GMT expires: - '-1' odata-version: @@ -14657,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14675,7 +16746,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:36 GMT + - Thu, 21 Jan 2021 00:56:47 GMT expires: - '-1' odata-version: @@ -14710,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14728,7 +16799,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:38 GMT + - Thu, 21 Jan 2021 00:56:49 GMT expires: - '-1' odata-version: @@ -14763,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14781,7 +16852,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:40 GMT + - Thu, 21 Jan 2021 00:56:51 GMT expires: - '-1' odata-version: @@ -14816,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14834,7 +16905,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:42 GMT + - Thu, 21 Jan 2021 00:56:53 GMT expires: - '-1' odata-version: @@ -14869,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14887,7 +16958,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:45 GMT + - Thu, 21 Jan 2021 00:56:56 GMT expires: - '-1' odata-version: @@ -14922,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14940,7 +17011,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:47 GMT + - Thu, 21 Jan 2021 00:56:58 GMT expires: - '-1' odata-version: @@ -14975,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -14993,7 +17064,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:49 GMT + - Thu, 21 Jan 2021 00:57:00 GMT expires: - '-1' odata-version: @@ -15028,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15046,7 +17117,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:51 GMT + - Thu, 21 Jan 2021 00:57:02 GMT expires: - '-1' odata-version: @@ -15081,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15099,7 +17170,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:53 GMT + - Thu, 21 Jan 2021 00:57:04 GMT expires: - '-1' odata-version: @@ -15134,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15152,7 +17223,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:55 GMT + - Thu, 21 Jan 2021 00:57:06 GMT expires: - '-1' odata-version: @@ -15187,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15205,7 +17276,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:57 GMT + - Thu, 21 Jan 2021 00:57:08 GMT expires: - '-1' odata-version: @@ -15240,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15258,7 +17329,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:54:59 GMT + - Thu, 21 Jan 2021 00:57:10 GMT expires: - '-1' odata-version: @@ -15293,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15311,7 +17382,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:02 GMT + - Thu, 21 Jan 2021 00:57:12 GMT expires: - '-1' odata-version: @@ -15346,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15364,7 +17435,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:04 GMT + - Thu, 21 Jan 2021 00:57:15 GMT expires: - '-1' odata-version: @@ -15399,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15417,7 +17488,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:06 GMT + - Thu, 21 Jan 2021 00:57:17 GMT expires: - '-1' odata-version: @@ -15452,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15470,7 +17541,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:08 GMT + - Thu, 21 Jan 2021 00:57:19 GMT expires: - '-1' odata-version: @@ -15505,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15523,7 +17594,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:10 GMT + - Thu, 21 Jan 2021 00:57:21 GMT expires: - '-1' odata-version: @@ -15558,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15576,7 +17647,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:12 GMT + - Thu, 21 Jan 2021 00:57:23 GMT expires: - '-1' odata-version: @@ -15611,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15629,7 +17700,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:14 GMT + - Thu, 21 Jan 2021 00:57:25 GMT expires: - '-1' odata-version: @@ -15664,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15682,7 +17753,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:16 GMT + - Thu, 21 Jan 2021 00:57:28 GMT expires: - '-1' odata-version: @@ -15717,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15735,7 +17806,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:18 GMT + - Thu, 21 Jan 2021 00:57:30 GMT expires: - '-1' odata-version: @@ -15770,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15788,7 +17859,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:21 GMT + - Thu, 21 Jan 2021 00:57:32 GMT expires: - '-1' odata-version: @@ -15823,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15841,7 +17912,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:23 GMT + - Thu, 21 Jan 2021 00:57:34 GMT expires: - '-1' odata-version: @@ -15876,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15894,7 +17965,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:25 GMT + - Thu, 21 Jan 2021 00:57:36 GMT expires: - '-1' odata-version: @@ -15929,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -15947,7 +18018,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:27 GMT + - Thu, 21 Jan 2021 00:57:38 GMT expires: - '-1' odata-version: @@ -15982,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16000,7 +18071,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:29 GMT + - Thu, 21 Jan 2021 00:57:40 GMT expires: - '-1' odata-version: @@ -16035,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16053,7 +18124,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:32 GMT + - Thu, 21 Jan 2021 00:57:42 GMT expires: - '-1' odata-version: @@ -16088,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16106,7 +18177,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:34 GMT + - Thu, 21 Jan 2021 00:57:44 GMT expires: - '-1' odata-version: @@ -16141,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16159,7 +18230,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:36 GMT + - Thu, 21 Jan 2021 00:57:47 GMT expires: - '-1' odata-version: @@ -16194,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16212,7 +18283,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:38 GMT + - Thu, 21 Jan 2021 00:57:49 GMT expires: - '-1' odata-version: @@ -16247,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16265,7 +18336,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:41 GMT + - Thu, 21 Jan 2021 00:57:51 GMT expires: - '-1' odata-version: @@ -16300,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16318,7 +18389,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:43 GMT + - Thu, 21 Jan 2021 00:57:53 GMT expires: - '-1' odata-version: @@ -16353,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16371,7 +18442,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:45 GMT + - Thu, 21 Jan 2021 00:57:55 GMT expires: - '-1' odata-version: @@ -16406,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16424,7 +18495,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:47 GMT + - Thu, 21 Jan 2021 00:57:57 GMT expires: - '-1' odata-version: @@ -16459,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16477,7 +18548,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:49 GMT + - Thu, 21 Jan 2021 00:57:59 GMT expires: - '-1' odata-version: @@ -16512,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16530,7 +18601,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:51 GMT + - Thu, 21 Jan 2021 00:58:01 GMT expires: - '-1' odata-version: @@ -16565,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16583,7 +18654,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:53 GMT + - Thu, 21 Jan 2021 00:58:03 GMT expires: - '-1' odata-version: @@ -16618,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16636,7 +18707,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:55 GMT + - Thu, 21 Jan 2021 00:58:06 GMT expires: - '-1' odata-version: @@ -16671,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16689,7 +18760,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:55:58 GMT + - Thu, 21 Jan 2021 00:58:08 GMT expires: - '-1' odata-version: @@ -16724,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16742,7 +18813,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:00 GMT + - Thu, 21 Jan 2021 00:58:10 GMT expires: - '-1' odata-version: @@ -16777,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16795,7 +18866,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:02 GMT + - Thu, 21 Jan 2021 00:58:12 GMT expires: - '-1' odata-version: @@ -16830,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16848,7 +18919,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:04 GMT + - Thu, 21 Jan 2021 00:58:14 GMT expires: - '-1' odata-version: @@ -16883,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16901,7 +18972,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:06 GMT + - Thu, 21 Jan 2021 00:58:17 GMT expires: - '-1' odata-version: @@ -16936,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -16954,7 +19025,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:08 GMT + - Thu, 21 Jan 2021 00:58:19 GMT expires: - '-1' odata-version: @@ -16989,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17007,7 +19078,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:10 GMT + - Thu, 21 Jan 2021 00:58:21 GMT expires: - '-1' odata-version: @@ -17042,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17060,7 +19131,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:12 GMT + - Thu, 21 Jan 2021 00:58:23 GMT expires: - '-1' odata-version: @@ -17095,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17113,7 +19184,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:14 GMT + - Thu, 21 Jan 2021 00:58:26 GMT expires: - '-1' odata-version: @@ -17148,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17166,7 +19237,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:17 GMT + - Thu, 21 Jan 2021 00:58:28 GMT expires: - '-1' odata-version: @@ -17201,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17219,7 +19290,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:19 GMT + - Thu, 21 Jan 2021 00:58:30 GMT expires: - '-1' odata-version: @@ -17254,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17272,7 +19343,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:21 GMT + - Thu, 21 Jan 2021 00:58:32 GMT expires: - '-1' odata-version: @@ -17307,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17325,7 +19396,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:23 GMT + - Thu, 21 Jan 2021 00:58:34 GMT expires: - '-1' odata-version: @@ -17360,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17378,7 +19449,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:25 GMT + - Thu, 21 Jan 2021 00:58:36 GMT expires: - '-1' odata-version: @@ -17413,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17431,7 +19502,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:27 GMT + - Thu, 21 Jan 2021 00:58:38 GMT expires: - '-1' odata-version: @@ -17466,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17484,7 +19555,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:29 GMT + - Thu, 21 Jan 2021 00:58:40 GMT expires: - '-1' odata-version: @@ -17519,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17537,7 +19608,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:31 GMT + - Thu, 21 Jan 2021 00:58:43 GMT expires: - '-1' odata-version: @@ -17572,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17590,7 +19661,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:34 GMT + - Thu, 21 Jan 2021 00:58:45 GMT expires: - '-1' odata-version: @@ -17625,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17643,7 +19714,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:36 GMT + - Thu, 21 Jan 2021 00:58:47 GMT expires: - '-1' odata-version: @@ -17678,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17696,7 +19767,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:38 GMT + - Thu, 21 Jan 2021 00:58:49 GMT expires: - '-1' odata-version: @@ -17731,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17749,7 +19820,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:40 GMT + - Thu, 21 Jan 2021 00:58:51 GMT expires: - '-1' odata-version: @@ -17784,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17802,7 +19873,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:42 GMT + - Thu, 21 Jan 2021 00:58:53 GMT expires: - '-1' odata-version: @@ -17837,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17855,7 +19926,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:44 GMT + - Thu, 21 Jan 2021 00:58:55 GMT expires: - '-1' odata-version: @@ -17890,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17908,7 +19979,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:47 GMT + - Thu, 21 Jan 2021 00:58:57 GMT expires: - '-1' odata-version: @@ -17943,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -17961,7 +20032,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:49 GMT + - Thu, 21 Jan 2021 00:58:59 GMT expires: - '-1' odata-version: @@ -17996,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18014,7 +20085,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:51 GMT + - Thu, 21 Jan 2021 00:59:02 GMT expires: - '-1' odata-version: @@ -18049,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18067,7 +20138,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:53 GMT + - Thu, 21 Jan 2021 00:59:04 GMT expires: - '-1' odata-version: @@ -18102,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18120,7 +20191,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:55 GMT + - Thu, 21 Jan 2021 00:59:06 GMT expires: - '-1' odata-version: @@ -18155,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18173,7 +20244,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:57 GMT + - Thu, 21 Jan 2021 00:59:08 GMT expires: - '-1' odata-version: @@ -18208,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18226,7 +20297,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:56:59 GMT + - Thu, 21 Jan 2021 00:59:10 GMT expires: - '-1' odata-version: @@ -18261,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18279,7 +20350,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:01 GMT + - Thu, 21 Jan 2021 00:59:12 GMT expires: - '-1' odata-version: @@ -18314,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18332,7 +20403,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:03 GMT + - Thu, 21 Jan 2021 00:59:14 GMT expires: - '-1' odata-version: @@ -18367,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18385,7 +20456,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:06 GMT + - Thu, 21 Jan 2021 00:59:16 GMT expires: - '-1' odata-version: @@ -18420,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18438,7 +20509,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:08 GMT + - Thu, 21 Jan 2021 00:59:18 GMT expires: - '-1' odata-version: @@ -18473,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18491,7 +20562,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:10 GMT + - Thu, 21 Jan 2021 00:59:21 GMT expires: - '-1' odata-version: @@ -18526,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18544,7 +20615,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:12 GMT + - Thu, 21 Jan 2021 00:59:23 GMT expires: - '-1' odata-version: @@ -18579,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18597,7 +20668,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:14 GMT + - Thu, 21 Jan 2021 00:59:25 GMT expires: - '-1' odata-version: @@ -18632,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18650,7 +20721,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:16 GMT + - Thu, 21 Jan 2021 00:59:27 GMT expires: - '-1' odata-version: @@ -18685,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18703,7 +20774,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:18 GMT + - Thu, 21 Jan 2021 00:59:29 GMT expires: - '-1' odata-version: @@ -18738,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18756,7 +20827,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:20 GMT + - Thu, 21 Jan 2021 00:59:31 GMT expires: - '-1' odata-version: @@ -18791,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18809,7 +20880,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:23 GMT + - Thu, 21 Jan 2021 00:59:33 GMT expires: - '-1' odata-version: @@ -18844,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18862,7 +20933,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:25 GMT + - Thu, 21 Jan 2021 00:59:35 GMT expires: - '-1' odata-version: @@ -18897,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18915,7 +20986,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:27 GMT + - Thu, 21 Jan 2021 00:59:37 GMT expires: - '-1' odata-version: @@ -18950,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -18968,7 +21039,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:29 GMT + - Thu, 21 Jan 2021 00:59:40 GMT expires: - '-1' odata-version: @@ -19003,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19021,7 +21092,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:31 GMT + - Thu, 21 Jan 2021 00:59:42 GMT expires: - '-1' odata-version: @@ -19056,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19074,7 +21145,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:33 GMT + - Thu, 21 Jan 2021 00:59:44 GMT expires: - '-1' odata-version: @@ -19109,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19127,7 +21198,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:35 GMT + - Thu, 21 Jan 2021 00:59:46 GMT expires: - '-1' odata-version: @@ -19162,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19180,7 +21251,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:37 GMT + - Thu, 21 Jan 2021 00:59:48 GMT expires: - '-1' odata-version: @@ -19215,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19233,7 +21304,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:39 GMT + - Thu, 21 Jan 2021 00:59:50 GMT expires: - '-1' odata-version: @@ -19268,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19286,7 +21357,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:42 GMT + - Thu, 21 Jan 2021 00:59:52 GMT expires: - '-1' odata-version: @@ -19321,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19339,7 +21410,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:44 GMT + - Thu, 21 Jan 2021 00:59:54 GMT expires: - '-1' odata-version: @@ -19374,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19392,7 +21463,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:46 GMT + - Thu, 21 Jan 2021 00:59:57 GMT expires: - '-1' odata-version: @@ -19427,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19445,7 +21516,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:48 GMT + - Thu, 21 Jan 2021 00:59:59 GMT expires: - '-1' odata-version: @@ -19480,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19498,7 +21569,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:50 GMT + - Thu, 21 Jan 2021 01:00:01 GMT expires: - '-1' odata-version: @@ -19533,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19551,7 +21622,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:52 GMT + - Thu, 21 Jan 2021 01:00:03 GMT expires: - '-1' odata-version: @@ -19586,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19604,7 +21675,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:54 GMT + - Thu, 21 Jan 2021 01:00:05 GMT expires: - '-1' odata-version: @@ -19639,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19657,7 +21728,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:56 GMT + - Thu, 21 Jan 2021 01:00:07 GMT expires: - '-1' odata-version: @@ -19692,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19710,7 +21781,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:57:58 GMT + - Thu, 21 Jan 2021 01:00:09 GMT expires: - '-1' odata-version: @@ -19745,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19763,7 +21834,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:00 GMT + - Thu, 21 Jan 2021 01:00:11 GMT expires: - '-1' odata-version: @@ -19798,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19816,7 +21887,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:03 GMT + - Thu, 21 Jan 2021 01:00:13 GMT expires: - '-1' odata-version: @@ -19851,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19869,7 +21940,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:05 GMT + - Thu, 21 Jan 2021 01:00:16 GMT expires: - '-1' odata-version: @@ -19904,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19922,7 +21993,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:07 GMT + - Thu, 21 Jan 2021 01:00:18 GMT expires: - '-1' odata-version: @@ -19957,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -19975,7 +22046,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:09 GMT + - Thu, 21 Jan 2021 01:00:20 GMT expires: - '-1' odata-version: @@ -20010,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20028,7 +22099,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:12 GMT + - Thu, 21 Jan 2021 01:00:22 GMT expires: - '-1' odata-version: @@ -20063,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20081,7 +22152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:14 GMT + - Thu, 21 Jan 2021 01:00:24 GMT expires: - '-1' odata-version: @@ -20116,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20134,7 +22205,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:16 GMT + - Thu, 21 Jan 2021 01:00:26 GMT expires: - '-1' odata-version: @@ -20169,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20187,7 +22258,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:18 GMT + - Thu, 21 Jan 2021 01:00:28 GMT expires: - '-1' odata-version: @@ -20222,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20240,7 +22311,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:21 GMT + - Thu, 21 Jan 2021 01:00:30 GMT expires: - '-1' odata-version: @@ -20275,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20293,7 +22364,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:23 GMT + - Thu, 21 Jan 2021 01:00:32 GMT expires: - '-1' odata-version: @@ -20328,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20346,7 +22417,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:25 GMT + - Thu, 21 Jan 2021 01:00:35 GMT expires: - '-1' odata-version: @@ -20381,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20399,7 +22470,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:27 GMT + - Thu, 21 Jan 2021 01:00:37 GMT expires: - '-1' odata-version: @@ -20434,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20452,7 +22523,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:29 GMT + - Thu, 21 Jan 2021 01:00:39 GMT expires: - '-1' odata-version: @@ -20487,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20505,7 +22576,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:31 GMT + - Thu, 21 Jan 2021 01:00:42 GMT expires: - '-1' odata-version: @@ -20540,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20558,7 +22629,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:33 GMT + - Thu, 21 Jan 2021 01:00:44 GMT expires: - '-1' odata-version: @@ -20593,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20611,7 +22682,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:35 GMT + - Thu, 21 Jan 2021 01:00:46 GMT expires: - '-1' odata-version: @@ -20646,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20664,7 +22735,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:37 GMT + - Thu, 21 Jan 2021 01:00:48 GMT expires: - '-1' odata-version: @@ -20699,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20717,7 +22788,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:40 GMT + - Thu, 21 Jan 2021 01:00:51 GMT expires: - '-1' odata-version: @@ -20752,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20770,7 +22841,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:42 GMT + - Thu, 21 Jan 2021 01:00:53 GMT expires: - '-1' odata-version: @@ -20805,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20823,7 +22894,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:44 GMT + - Thu, 21 Jan 2021 01:00:55 GMT expires: - '-1' odata-version: @@ -20858,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20876,7 +22947,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:46 GMT + - Thu, 21 Jan 2021 01:00:57 GMT expires: - '-1' odata-version: @@ -20911,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20929,7 +23000,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:48 GMT + - Thu, 21 Jan 2021 01:00:59 GMT expires: - '-1' odata-version: @@ -20964,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -20982,7 +23053,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:50 GMT + - Thu, 21 Jan 2021 01:01:01 GMT expires: - '-1' odata-version: @@ -21017,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21035,7 +23106,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:52 GMT + - Thu, 21 Jan 2021 01:01:03 GMT expires: - '-1' odata-version: @@ -21070,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21088,7 +23159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:54 GMT + - Thu, 21 Jan 2021 01:01:05 GMT expires: - '-1' odata-version: @@ -21123,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21141,7 +23212,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:56 GMT + - Thu, 21 Jan 2021 01:01:07 GMT expires: - '-1' odata-version: @@ -21176,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21194,7 +23265,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:58:59 GMT + - Thu, 21 Jan 2021 01:01:10 GMT expires: - '-1' odata-version: @@ -21229,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21247,7 +23318,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:01 GMT + - Thu, 21 Jan 2021 01:01:12 GMT expires: - '-1' odata-version: @@ -21282,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21300,7 +23371,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:03 GMT + - Thu, 21 Jan 2021 01:01:14 GMT expires: - '-1' odata-version: @@ -21335,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21353,7 +23424,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:05 GMT + - Thu, 21 Jan 2021 01:01:16 GMT expires: - '-1' odata-version: @@ -21388,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21406,7 +23477,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:07 GMT + - Thu, 21 Jan 2021 01:01:18 GMT expires: - '-1' odata-version: @@ -21441,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21459,7 +23530,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:09 GMT + - Thu, 21 Jan 2021 01:01:20 GMT expires: - '-1' odata-version: @@ -21494,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21512,7 +23583,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:11 GMT + - Thu, 21 Jan 2021 01:01:23 GMT expires: - '-1' odata-version: @@ -21547,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21565,7 +23636,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:13 GMT + - Thu, 21 Jan 2021 01:01:25 GMT expires: - '-1' odata-version: @@ -21600,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21618,7 +23689,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:15 GMT + - Thu, 21 Jan 2021 01:01:27 GMT expires: - '-1' odata-version: @@ -21653,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21671,7 +23742,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:18 GMT + - Thu, 21 Jan 2021 01:01:29 GMT expires: - '-1' odata-version: @@ -21706,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21724,7 +23795,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:20 GMT + - Thu, 21 Jan 2021 01:01:31 GMT expires: - '-1' odata-version: @@ -21759,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21777,7 +23848,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:22 GMT + - Thu, 21 Jan 2021 01:01:33 GMT expires: - '-1' odata-version: @@ -21812,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21830,7 +23901,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:24 GMT + - Thu, 21 Jan 2021 01:01:35 GMT expires: - '-1' odata-version: @@ -21865,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21883,7 +23954,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:26 GMT + - Thu, 21 Jan 2021 01:01:37 GMT expires: - '-1' odata-version: @@ -21918,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21936,7 +24007,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:28 GMT + - Thu, 21 Jan 2021 01:01:40 GMT expires: - '-1' odata-version: @@ -21971,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -21989,7 +24060,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:30 GMT + - Thu, 21 Jan 2021 01:01:42 GMT expires: - '-1' odata-version: @@ -22024,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22042,7 +24113,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:32 GMT + - Thu, 21 Jan 2021 01:01:44 GMT expires: - '-1' odata-version: @@ -22077,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22095,7 +24166,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:35 GMT + - Thu, 21 Jan 2021 01:01:46 GMT expires: - '-1' odata-version: @@ -22130,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22148,7 +24219,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:37 GMT + - Thu, 21 Jan 2021 01:01:48 GMT expires: - '-1' odata-version: @@ -22183,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22201,7 +24272,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:39 GMT + - Thu, 21 Jan 2021 01:01:50 GMT expires: - '-1' odata-version: @@ -22236,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22254,7 +24325,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:41 GMT + - Thu, 21 Jan 2021 01:01:52 GMT expires: - '-1' odata-version: @@ -22289,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22307,7 +24378,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:43 GMT + - Thu, 21 Jan 2021 01:01:54 GMT expires: - '-1' odata-version: @@ -22342,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22360,7 +24431,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:45 GMT + - Thu, 21 Jan 2021 01:01:56 GMT expires: - '-1' odata-version: @@ -22395,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22413,7 +24484,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:47 GMT + - Thu, 21 Jan 2021 01:01:59 GMT expires: - '-1' odata-version: @@ -22448,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22466,7 +24537,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:49 GMT + - Thu, 21 Jan 2021 01:02:01 GMT expires: - '-1' odata-version: @@ -22501,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22519,7 +24590,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:51 GMT + - Thu, 21 Jan 2021 01:02:03 GMT expires: - '-1' odata-version: @@ -22554,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22572,7 +24643,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:54 GMT + - Thu, 21 Jan 2021 01:02:05 GMT expires: - '-1' odata-version: @@ -22607,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22625,7 +24696,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:56 GMT + - Thu, 21 Jan 2021 01:02:07 GMT expires: - '-1' odata-version: @@ -22660,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22678,7 +24749,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:59:58 GMT + - Thu, 21 Jan 2021 01:02:09 GMT expires: - '-1' odata-version: @@ -22713,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22731,7 +24802,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:00 GMT + - Thu, 21 Jan 2021 01:02:11 GMT expires: - '-1' odata-version: @@ -22766,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22784,7 +24855,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:02 GMT + - Thu, 21 Jan 2021 01:02:13 GMT expires: - '-1' odata-version: @@ -22819,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22837,7 +24908,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:04 GMT + - Thu, 21 Jan 2021 01:02:16 GMT expires: - '-1' odata-version: @@ -22872,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22890,7 +24961,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:06 GMT + - Thu, 21 Jan 2021 01:02:18 GMT expires: - '-1' odata-version: @@ -22925,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22943,7 +25014,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:08 GMT + - Thu, 21 Jan 2021 01:02:20 GMT expires: - '-1' odata-version: @@ -22978,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -22996,7 +25067,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:11 GMT + - Thu, 21 Jan 2021 01:02:22 GMT expires: - '-1' odata-version: @@ -23031,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23049,7 +25120,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:13 GMT + - Thu, 21 Jan 2021 01:02:24 GMT expires: - '-1' odata-version: @@ -23084,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23102,7 +25173,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:15 GMT + - Thu, 21 Jan 2021 01:02:26 GMT expires: - '-1' odata-version: @@ -23137,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23155,7 +25226,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:17 GMT + - Thu, 21 Jan 2021 01:02:28 GMT expires: - '-1' odata-version: @@ -23190,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23208,7 +25279,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:19 GMT + - Thu, 21 Jan 2021 01:02:30 GMT expires: - '-1' odata-version: @@ -23243,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23261,7 +25332,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:21 GMT + - Thu, 21 Jan 2021 01:02:32 GMT expires: - '-1' odata-version: @@ -23296,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23314,7 +25385,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:23 GMT + - Thu, 21 Jan 2021 01:02:35 GMT expires: - '-1' odata-version: @@ -23349,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23367,7 +25438,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:25 GMT + - Thu, 21 Jan 2021 01:02:37 GMT expires: - '-1' odata-version: @@ -23402,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23420,7 +25491,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:28 GMT + - Thu, 21 Jan 2021 01:02:39 GMT expires: - '-1' odata-version: @@ -23455,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23473,7 +25544,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:31 GMT + - Thu, 21 Jan 2021 01:02:41 GMT expires: - '-1' odata-version: @@ -23508,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23526,7 +25597,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:33 GMT + - Thu, 21 Jan 2021 01:02:43 GMT expires: - '-1' odata-version: @@ -23561,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23579,7 +25650,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:35 GMT + - Thu, 21 Jan 2021 01:02:45 GMT expires: - '-1' odata-version: @@ -23614,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23632,7 +25703,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:37 GMT + - Thu, 21 Jan 2021 01:02:47 GMT expires: - '-1' odata-version: @@ -23667,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23685,7 +25756,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:39 GMT + - Thu, 21 Jan 2021 01:02:49 GMT expires: - '-1' odata-version: @@ -23720,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23738,7 +25809,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:41 GMT + - Thu, 21 Jan 2021 01:02:51 GMT expires: - '-1' odata-version: @@ -23773,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23791,7 +25862,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:43 GMT + - Thu, 21 Jan 2021 01:02:54 GMT expires: - '-1' odata-version: @@ -23826,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23844,7 +25915,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:45 GMT + - Thu, 21 Jan 2021 01:02:56 GMT expires: - '-1' odata-version: @@ -23879,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23897,7 +25968,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:48 GMT + - Thu, 21 Jan 2021 01:02:58 GMT expires: - '-1' odata-version: @@ -23932,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -23950,7 +26021,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:50 GMT + - Thu, 21 Jan 2021 01:03:00 GMT expires: - '-1' odata-version: @@ -23985,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24003,7 +26074,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:52 GMT + - Thu, 21 Jan 2021 01:03:02 GMT expires: - '-1' odata-version: @@ -24038,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24056,7 +26127,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:54 GMT + - Thu, 21 Jan 2021 01:03:05 GMT expires: - '-1' odata-version: @@ -24091,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24109,7 +26180,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:56 GMT + - Thu, 21 Jan 2021 01:03:07 GMT expires: - '-1' odata-version: @@ -24144,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24162,7 +26233,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:58 GMT + - Thu, 21 Jan 2021 01:03:09 GMT expires: - '-1' odata-version: @@ -24197,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24215,7 +26286,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:00 GMT + - Thu, 21 Jan 2021 01:03:12 GMT expires: - '-1' odata-version: @@ -24250,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24268,7 +26339,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:02 GMT + - Thu, 21 Jan 2021 01:03:14 GMT expires: - '-1' odata-version: @@ -24303,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24321,7 +26392,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:05 GMT + - Thu, 21 Jan 2021 01:03:16 GMT expires: - '-1' odata-version: @@ -24356,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24374,7 +26445,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:07 GMT + - Thu, 21 Jan 2021 01:03:18 GMT expires: - '-1' odata-version: @@ -24409,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24427,7 +26498,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:09 GMT + - Thu, 21 Jan 2021 01:03:20 GMT expires: - '-1' odata-version: @@ -24462,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24480,7 +26551,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:11 GMT + - Thu, 21 Jan 2021 01:03:22 GMT expires: - '-1' odata-version: @@ -24515,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24533,7 +26604,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:13 GMT + - Thu, 21 Jan 2021 01:03:24 GMT expires: - '-1' odata-version: @@ -24568,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24586,7 +26657,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:15 GMT + - Thu, 21 Jan 2021 01:03:26 GMT expires: - '-1' odata-version: @@ -24621,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24639,7 +26710,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:17 GMT + - Thu, 21 Jan 2021 01:03:28 GMT expires: - '-1' odata-version: @@ -24674,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24692,7 +26763,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:19 GMT + - Thu, 21 Jan 2021 01:03:30 GMT expires: - '-1' odata-version: @@ -24727,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24745,7 +26816,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:21 GMT + - Thu, 21 Jan 2021 01:03:33 GMT expires: - '-1' odata-version: @@ -24780,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24798,7 +26869,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:24 GMT + - Thu, 21 Jan 2021 01:03:35 GMT expires: - '-1' odata-version: @@ -24833,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24851,7 +26922,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:26 GMT + - Thu, 21 Jan 2021 01:03:37 GMT expires: - '-1' odata-version: @@ -24886,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24904,7 +26975,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:28 GMT + - Thu, 21 Jan 2021 01:03:39 GMT expires: - '-1' odata-version: @@ -24939,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -24957,7 +27028,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:30 GMT + - Thu, 21 Jan 2021 01:03:41 GMT expires: - '-1' odata-version: @@ -24992,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25010,7 +27081,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:32 GMT + - Thu, 21 Jan 2021 01:03:43 GMT expires: - '-1' odata-version: @@ -25045,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25063,7 +27134,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:34 GMT + - Thu, 21 Jan 2021 01:03:45 GMT expires: - '-1' odata-version: @@ -25098,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25116,7 +27187,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:36 GMT + - Thu, 21 Jan 2021 01:03:47 GMT expires: - '-1' odata-version: @@ -25151,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25169,7 +27240,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:38 GMT + - Thu, 21 Jan 2021 01:03:49 GMT expires: - '-1' odata-version: @@ -25204,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25222,7 +27293,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:40 GMT + - Thu, 21 Jan 2021 01:03:51 GMT expires: - '-1' odata-version: @@ -25257,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25275,7 +27346,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:43 GMT + - Thu, 21 Jan 2021 01:03:54 GMT expires: - '-1' odata-version: @@ -25310,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25328,7 +27399,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:45 GMT + - Thu, 21 Jan 2021 01:03:56 GMT expires: - '-1' odata-version: @@ -25363,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25381,7 +27452,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:47 GMT + - Thu, 21 Jan 2021 01:03:58 GMT expires: - '-1' odata-version: @@ -25416,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25434,7 +27505,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:49 GMT + - Thu, 21 Jan 2021 01:04:00 GMT expires: - '-1' odata-version: @@ -25469,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25487,7 +27558,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:51 GMT + - Thu, 21 Jan 2021 01:04:02 GMT expires: - '-1' odata-version: @@ -25522,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25540,7 +27611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:53 GMT + - Thu, 21 Jan 2021 01:04:04 GMT expires: - '-1' odata-version: @@ -25575,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25593,7 +27664,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:55 GMT + - Thu, 21 Jan 2021 01:04:06 GMT expires: - '-1' odata-version: @@ -25628,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25646,7 +27717,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:01:57 GMT + - Thu, 21 Jan 2021 01:04:08 GMT expires: - '-1' odata-version: @@ -25681,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25699,7 +27770,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:00 GMT + - Thu, 21 Jan 2021 01:04:11 GMT expires: - '-1' odata-version: @@ -25734,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25752,7 +27823,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:02 GMT + - Thu, 21 Jan 2021 01:04:13 GMT expires: - '-1' odata-version: @@ -25787,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25805,7 +27876,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:04 GMT + - Thu, 21 Jan 2021 01:04:15 GMT expires: - '-1' odata-version: @@ -25840,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25858,7 +27929,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:06 GMT + - Thu, 21 Jan 2021 01:04:17 GMT expires: - '-1' odata-version: @@ -25893,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25911,7 +27982,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:08 GMT + - Thu, 21 Jan 2021 01:04:19 GMT expires: - '-1' odata-version: @@ -25946,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -25964,7 +28035,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:10 GMT + - Thu, 21 Jan 2021 01:04:21 GMT expires: - '-1' odata-version: @@ -25999,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26017,7 +28088,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:12 GMT + - Thu, 21 Jan 2021 01:04:23 GMT expires: - '-1' odata-version: @@ -26052,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26070,7 +28141,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:14 GMT + - Thu, 21 Jan 2021 01:04:25 GMT expires: - '-1' odata-version: @@ -26105,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26123,7 +28194,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:17 GMT + - Thu, 21 Jan 2021 01:04:27 GMT expires: - '-1' odata-version: @@ -26158,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26176,7 +28247,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:19 GMT + - Thu, 21 Jan 2021 01:04:30 GMT expires: - '-1' odata-version: @@ -26211,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26229,7 +28300,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:21 GMT + - Thu, 21 Jan 2021 01:04:32 GMT expires: - '-1' odata-version: @@ -26264,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26282,7 +28353,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:23 GMT + - Thu, 21 Jan 2021 01:04:34 GMT expires: - '-1' odata-version: @@ -26317,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26335,7 +28406,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:25 GMT + - Thu, 21 Jan 2021 01:04:36 GMT expires: - '-1' odata-version: @@ -26370,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26388,7 +28459,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:27 GMT + - Thu, 21 Jan 2021 01:04:38 GMT expires: - '-1' odata-version: @@ -26423,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26441,7 +28512,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:30 GMT + - Thu, 21 Jan 2021 01:04:40 GMT expires: - '-1' odata-version: @@ -26476,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26494,7 +28565,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:32 GMT + - Thu, 21 Jan 2021 01:04:42 GMT expires: - '-1' odata-version: @@ -26529,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26547,7 +28618,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:34 GMT + - Thu, 21 Jan 2021 01:04:44 GMT expires: - '-1' odata-version: @@ -26582,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26600,7 +28671,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:36 GMT + - Thu, 21 Jan 2021 01:04:46 GMT expires: - '-1' odata-version: @@ -26635,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26653,7 +28724,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:38 GMT + - Thu, 21 Jan 2021 01:04:49 GMT expires: - '-1' odata-version: @@ -26688,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26706,7 +28777,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:40 GMT + - Thu, 21 Jan 2021 01:04:51 GMT expires: - '-1' odata-version: @@ -26741,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26759,7 +28830,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:42 GMT + - Thu, 21 Jan 2021 01:04:53 GMT expires: - '-1' odata-version: @@ -26794,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26812,7 +28883,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:44 GMT + - Thu, 21 Jan 2021 01:04:56 GMT expires: - '-1' odata-version: @@ -26847,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26865,7 +28936,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:47 GMT + - Thu, 21 Jan 2021 01:04:58 GMT expires: - '-1' odata-version: @@ -26900,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26918,7 +28989,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:49 GMT + - Thu, 21 Jan 2021 01:05:00 GMT expires: - '-1' odata-version: @@ -26953,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -26971,7 +29042,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:51 GMT + - Thu, 21 Jan 2021 01:05:02 GMT expires: - '-1' odata-version: @@ -27006,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27024,7 +29095,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:53 GMT + - Thu, 21 Jan 2021 01:05:05 GMT expires: - '-1' odata-version: @@ -27059,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27077,7 +29148,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:55 GMT + - Thu, 21 Jan 2021 01:05:07 GMT expires: - '-1' odata-version: @@ -27112,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27130,7 +29201,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:57 GMT + - Thu, 21 Jan 2021 01:05:09 GMT expires: - '-1' odata-version: @@ -27165,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27183,7 +29254,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:59 GMT + - Thu, 21 Jan 2021 01:05:11 GMT expires: - '-1' odata-version: @@ -27218,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27236,7 +29307,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:02 GMT + - Thu, 21 Jan 2021 01:05:13 GMT expires: - '-1' odata-version: @@ -27271,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27289,7 +29360,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:04 GMT + - Thu, 21 Jan 2021 01:05:15 GMT expires: - '-1' odata-version: @@ -27324,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27342,7 +29413,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:06 GMT + - Thu, 21 Jan 2021 01:05:17 GMT expires: - '-1' odata-version: @@ -27377,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27395,7 +29466,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:08 GMT + - Thu, 21 Jan 2021 01:05:20 GMT expires: - '-1' odata-version: @@ -27430,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27448,7 +29519,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:11 GMT + - Thu, 21 Jan 2021 01:05:22 GMT expires: - '-1' odata-version: @@ -27483,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27501,7 +29572,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:13 GMT + - Thu, 21 Jan 2021 01:05:24 GMT expires: - '-1' odata-version: @@ -27536,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27554,7 +29625,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:15 GMT + - Thu, 21 Jan 2021 01:05:26 GMT expires: - '-1' odata-version: @@ -27589,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27607,7 +29678,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:17 GMT + - Thu, 21 Jan 2021 01:05:28 GMT expires: - '-1' odata-version: @@ -27642,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27660,7 +29731,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:19 GMT + - Thu, 21 Jan 2021 01:05:30 GMT expires: - '-1' odata-version: @@ -27695,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27713,7 +29784,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:22 GMT + - Thu, 21 Jan 2021 01:05:32 GMT expires: - '-1' odata-version: @@ -27748,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27766,7 +29837,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:24 GMT + - Thu, 21 Jan 2021 01:05:34 GMT expires: - '-1' odata-version: @@ -27801,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27819,7 +29890,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:26 GMT + - Thu, 21 Jan 2021 01:05:36 GMT expires: - '-1' odata-version: @@ -27854,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27872,7 +29943,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:28 GMT + - Thu, 21 Jan 2021 01:05:39 GMT expires: - '-1' odata-version: @@ -27907,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27925,7 +29996,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:30 GMT + - Thu, 21 Jan 2021 01:05:41 GMT expires: - '-1' odata-version: @@ -27960,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -27978,7 +30049,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:32 GMT + - Thu, 21 Jan 2021 01:05:43 GMT expires: - '-1' odata-version: @@ -28013,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28031,7 +30102,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:34 GMT + - Thu, 21 Jan 2021 01:05:45 GMT expires: - '-1' odata-version: @@ -28066,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28084,7 +30155,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:36 GMT + - Thu, 21 Jan 2021 01:05:47 GMT expires: - '-1' odata-version: @@ -28119,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28137,7 +30208,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:38 GMT + - Thu, 21 Jan 2021 01:05:49 GMT expires: - '-1' odata-version: @@ -28172,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28190,7 +30261,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:41 GMT + - Thu, 21 Jan 2021 01:05:51 GMT expires: - '-1' odata-version: @@ -28225,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28243,7 +30314,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:43 GMT + - Thu, 21 Jan 2021 01:05:53 GMT expires: - '-1' odata-version: @@ -28278,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28296,7 +30367,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:45 GMT + - Thu, 21 Jan 2021 01:05:56 GMT expires: - '-1' odata-version: @@ -28331,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.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28349,7 +30420,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:47 GMT + - Thu, 21 Jan 2021 01:05:58 GMT expires: - '-1' odata-version: @@ -28384,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28402,7 +30473,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:49 GMT + - Thu, 21 Jan 2021 01:06:00 GMT expires: - '-1' odata-version: @@ -28437,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28455,7 +30526,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:51 GMT + - Thu, 21 Jan 2021 01:06:02 GMT expires: - '-1' odata-version: @@ -28490,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28508,7 +30579,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:53 GMT + - Thu, 21 Jan 2021 01:06:04 GMT expires: - '-1' odata-version: @@ -28543,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28561,7 +30632,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:55 GMT + - Thu, 21 Jan 2021 01:06:06 GMT expires: - '-1' odata-version: @@ -28596,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28614,7 +30685,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:03:57 GMT + - Thu, 21 Jan 2021 01:06:08 GMT expires: - '-1' odata-version: @@ -28649,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28667,7 +30738,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:00 GMT + - Thu, 21 Jan 2021 01:06:10 GMT expires: - '-1' odata-version: @@ -28702,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28720,7 +30791,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:02 GMT + - Thu, 21 Jan 2021 01:06:13 GMT expires: - '-1' odata-version: @@ -28755,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28773,7 +30844,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:04 GMT + - Thu, 21 Jan 2021 01:06:15 GMT expires: - '-1' odata-version: @@ -28808,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28826,7 +30897,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:06 GMT + - Thu, 21 Jan 2021 01:06:17 GMT expires: - '-1' odata-version: @@ -28861,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28879,7 +30950,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:08 GMT + - Thu, 21 Jan 2021 01:06:19 GMT expires: - '-1' odata-version: @@ -28914,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28932,7 +31003,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:10 GMT + - Thu, 21 Jan 2021 01:06:21 GMT expires: - '-1' odata-version: @@ -28967,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -28985,7 +31056,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:12 GMT + - Thu, 21 Jan 2021 01:06:23 GMT expires: - '-1' odata-version: @@ -29020,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29038,7 +31109,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:14 GMT + - Thu, 21 Jan 2021 01:06:25 GMT expires: - '-1' odata-version: @@ -29073,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29091,7 +31162,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:17 GMT + - Thu, 21 Jan 2021 01:06:27 GMT expires: - '-1' odata-version: @@ -29126,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29144,7 +31215,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:19 GMT + - Thu, 21 Jan 2021 01:06:29 GMT expires: - '-1' odata-version: @@ -29179,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29197,7 +31268,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:21 GMT + - Thu, 21 Jan 2021 01:06:32 GMT expires: - '-1' odata-version: @@ -29232,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29250,7 +31321,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:23 GMT + - Thu, 21 Jan 2021 01:06:34 GMT expires: - '-1' odata-version: @@ -29285,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29303,7 +31374,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:25 GMT + - Thu, 21 Jan 2021 01:06:36 GMT expires: - '-1' odata-version: @@ -29338,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29356,7 +31427,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:27 GMT + - Thu, 21 Jan 2021 01:06:38 GMT expires: - '-1' odata-version: @@ -29391,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29409,7 +31480,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:29 GMT + - Thu, 21 Jan 2021 01:06:40 GMT expires: - '-1' odata-version: @@ -29444,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29462,7 +31533,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:31 GMT + - Thu, 21 Jan 2021 01:06:42 GMT expires: - '-1' odata-version: @@ -29497,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29515,7 +31586,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:33 GMT + - Thu, 21 Jan 2021 01:06:44 GMT expires: - '-1' odata-version: @@ -29550,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29568,7 +31639,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:36 GMT + - Thu, 21 Jan 2021 01:06:46 GMT expires: - '-1' odata-version: @@ -29603,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29621,7 +31692,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:38 GMT + - Thu, 21 Jan 2021 01:06:49 GMT expires: - '-1' odata-version: @@ -29656,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29674,7 +31745,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:40 GMT + - Thu, 21 Jan 2021 01:06:51 GMT expires: - '-1' odata-version: @@ -29709,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29727,7 +31798,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:42 GMT + - Thu, 21 Jan 2021 01:06:53 GMT expires: - '-1' odata-version: @@ -29762,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29780,7 +31851,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:44 GMT + - Thu, 21 Jan 2021 01:06:55 GMT expires: - '-1' odata-version: @@ -29815,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29833,7 +31904,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:46 GMT + - Thu, 21 Jan 2021 01:06:57 GMT expires: - '-1' odata-version: @@ -29868,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29886,7 +31957,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:48 GMT + - Thu, 21 Jan 2021 01:06:59 GMT expires: - '-1' odata-version: @@ -29921,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29939,7 +32010,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:50 GMT + - Thu, 21 Jan 2021 01:07:01 GMT expires: - '-1' odata-version: @@ -29974,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -29992,7 +32063,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:53 GMT + - Thu, 21 Jan 2021 01:07:03 GMT expires: - '-1' odata-version: @@ -30027,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30045,7 +32116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:55 GMT + - Thu, 21 Jan 2021 01:07:05 GMT expires: - '-1' odata-version: @@ -30080,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30098,7 +32169,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:57 GMT + - Thu, 21 Jan 2021 01:07:07 GMT expires: - '-1' odata-version: @@ -30133,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30151,7 +32222,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:04:59 GMT + - Thu, 21 Jan 2021 01:07:10 GMT expires: - '-1' odata-version: @@ -30186,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30204,7 +32275,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:01 GMT + - Thu, 21 Jan 2021 01:07:12 GMT expires: - '-1' odata-version: @@ -30239,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30257,7 +32328,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:03 GMT + - Thu, 21 Jan 2021 01:07:14 GMT expires: - '-1' odata-version: @@ -30292,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 response: body: - string: "{\r\n \"name\":\"767dd222-cf84-4ffc-9143-ec5ddc0806be\",\"status\":\"InProgress\",\"error\":{\r\n - \ \"code\":\"None\",\"message\":null,\"target\":\"5e6691c5-558e-42b3-8f15-06cbe0e3b0be\"\r\n + string: "{\r\n \"name\":\"2b8ad3f6-5fe0-44e9-9219-ec8056ca288a\",\"status\":\"InProgress\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"b0172482-4a3b-42df-b879-19f7368d2c82\"\r\n \ }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30310,7 +32381,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:05 GMT + - Thu, 21 Jan 2021 01:07:16 GMT expires: - '-1' odata-version: @@ -30345,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/2.18.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?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\":\"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/767dd222-cf84-4ffc-9143-ec5ddc0806be?api-version=2018-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Media/mediaservices/ams000003/streamingendpointoperations/2b8ad3f6-5fe0-44e9-9219-ec8056ca288a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -30363,7 +32434,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:07 GMT + - Thu, 21 Jan 2021 01:07:18 GMT expires: - '-1' odata-version: @@ -30398,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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=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-21T00:45:40.3793388Z\",\"lastModified\":\"2021-01-21T01:07:18.0355544Z\"\r\n \ }\r\n}" headers: cache-control: @@ -30415,7 +32486,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:08 GMT + - Thu, 21 Jan 2021 01:07:18 GMT expires: - '-1' odata-version: @@ -30452,27 +32523,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.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/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/25000392-c865-49b3-a0c4-c52848181e45?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 22:05:10 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/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/25000392-c865-49b3-a0c4-c52848181e45?api-version=2020-05-01 pragma: - no-cache server: @@ -30501,16 +32572,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.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/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-21T00:45:40.3793388Z\",\"lastModified\":\"2021-01-21T01:07:21.4418391Z\"\r\n \ }\r\n}" headers: cache-control: @@ -30520,7 +32591,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:11 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 fd7166bd079..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:46:03 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: + - '1197' 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.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/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\":\"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 \ }\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 + - Thu, 21 Jan 2021 00:46:04 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.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/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-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/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/c430700f-6bbf-4da7-9830-4634a505c9ad?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 + - 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/c430700f-6bbf-4da7-9830-4634a505c9ad?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: + - '1198' 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.18.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/c430700f-6bbf-4da7-9830-4634a505c9ad?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\":\"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/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/c430700f-6bbf-4da7-9830-4634a505c9ad?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 + - Thu, 21 Jan 2021 00:46:10 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.18.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/c430700f-6bbf-4da7-9830-4634a505c9ad?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\":\"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/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/c430700f-6bbf-4da7-9830-4634a505c9ad?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 + - Thu, 21 Jan 2021 00:46:12 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.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=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,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\":\"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-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: - - Fri, 25 Sep 2020 21:45:32 GMT + - Thu, 21 Jan 2021 00:46:12 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.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/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,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\":\"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-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: - - Fri, 25 Sep 2020 21:45:33 GMT + - Thu, 21 Jan 2021 00:46:13 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.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/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,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\":\"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-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: - - Fri, 25 Sep 2020 21:45:35 GMT + - Thu, 21 Jan 2021 00:46:14 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.18.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 + - Thu, 21 Jan 2021 00:46:16 GMT expires: - '-1' odata-version: @@ -1694,7 +564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1198' 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.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/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-21T00:46:07.0315324Z\",\"lastModified\":\"2021-01-21T00:46:16.4927168Z\"\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 + - Thu, 21 Jan 2021 00:46:17 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.18.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 + - Thu, 21 Jan 2021 00:46:19 GMT expires: - '-1' odata-version: @@ -1842,7 +712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' 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.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/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-21T00:46:07.0315324Z\",\"lastModified\":\"2021-01-21T00:46:19.3577967Z\"\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 + - Thu, 21 Jan 2021 00:46:20 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.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/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/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:45:40 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/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/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?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.18.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/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?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\":\"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/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/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?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 + - Thu, 21 Jan 2021 00:46:24 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.18.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/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?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\":\"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/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/5cff62d9-6982-4cdc-ad90-f4aabf4a8324?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 + - 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 978287bcb4b..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:08:27 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.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/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\":\"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: - no-cache content-length: - - '532' + - '530' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:56 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -131,15 +133,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.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/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-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: @@ -150,7 +152,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:57 GMT + - Thu, 21 Jan 2021 04:08:31 GMT expires: - '-1' odata-version: @@ -164,7 +166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1198' 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.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/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-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: @@ -209,7 +211,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:59 GMT + - Thu, 21 Jan 2021 04:08:32 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.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/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-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: @@ -261,7 +263,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:01 GMT + - Thu, 21 Jan 2021 04:08:33 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.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/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 + - Thu, 21 Jan 2021 04:08:35 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.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/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-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: @@ -363,7 +365,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:04 GMT + - Thu, 21 Jan 2021 04:08:37 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.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/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 + - Thu, 21 Jan 2021 04:08:37 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.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/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 + - 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 1517e396133..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:08:28 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.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/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\":\"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: - no-cache content-length: - - '530' + - '532' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:34 GMT + - Thu, 21 Jan 2021 04:08:29 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.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/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\":\"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}" @@ -153,7 +155,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:34 GMT + - Thu, 21 Jan 2021 04:08:31 GMT expires: - '-1' odata-version: @@ -171,7 +173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' 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.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/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-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: @@ -215,7 +217,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:36 GMT + - Thu, 21 Jan 2021 04:08:35 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.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=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\":\"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: @@ -267,7 +269,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:02:36 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 18175bc762b..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:08:25 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 @@ -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.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/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\":\"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: - - Fri, 25 Sep 2020 21:44:55 GMT + - Thu, 21 Jan 2021 04:08:26 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.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/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-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 @@ -168,7 +170,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:55 GMT + - Thu, 21 Jan 2021 04:08:26 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.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/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-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 @@ -232,7 +234,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:56 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -265,28 +267,28 @@ 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.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/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-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 \ \r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1035' + - '1034' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:44:57 GMT + - Thu, 21 Jan 2021 04:08:28 GMT expires: - '-1' odata-version: @@ -321,26 +323,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.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/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-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: - - Fri, 25 Sep 2020 21:44:57 GMT + - Thu, 21 Jan 2021 04:08:28 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.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/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 + - Thu, 21 Jan 2021 04:08:28 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.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/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 + - 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 3a44cbce161..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:08:28 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.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/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\":\"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: - no-cache content-length: - - '532' + - '530' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:16 GMT + - Thu, 21 Jan 2021 04:08:30 GMT expires: - '-1' odata-version: @@ -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.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/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 + - Thu, 21 Jan 2021 04:08:33 GMT expires: - '-1' odata-version: @@ -162,7 +164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 201 message: Created @@ -186,26 +188,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.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/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-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: - - Fri, 25 Sep 2020 21:46:20 GMT + - Thu, 21 Jan 2021 04:08:35 GMT expires: - '-1' odata-version: @@ -219,7 +221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -246,15 +248,15 @@ 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.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/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-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: @@ -265,7 +267,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:23 GMT + - Thu, 21 Jan 2021 04:08:38 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.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/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-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: cache-control: - no-cache content-length: - - '700' + - '699' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:25 GMT + - Thu, 21 Jan 2021 04:08: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.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/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-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: cache-control: - no-cache content-length: - - '760' + - '759' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:25 GMT + - Thu, 21 Jan 2021 04:08: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.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/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 + - Thu, 21 Jan 2021 04:08:42 GMT expires: - '-1' odata-version: @@ -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.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/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 + - 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 a836a89c54e..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:11:53 GMT expires: - '-1' odata-version: @@ -52,7 +54,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 --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.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/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-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: @@ -95,7 +97,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:54 GMT + - Thu, 21 Jan 2021 04:11:54 GMT expires: - '-1' odata-version: @@ -109,7 +111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' status: code: 201 message: Created @@ -128,15 +130,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.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/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-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: @@ -147,7 +149,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:54 GMT + - Thu, 21 Jan 2021 04:11:54 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.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/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,7 +229,7 @@ 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-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: @@ -238,7 +240,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:00:54 GMT + - Thu, 21 Jan 2021 04:11:55 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.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/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 + - Thu, 21 Jan 2021 04:11:56 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:11:53 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 @@ -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.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/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-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 @@ -102,7 +104,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 22:05:34 GMT + - Thu, 21 Jan 2021 04:11:55 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:11:54 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1199' 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.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/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-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 @@ -96,11 +98,11 @@ interactions: cache-control: - no-cache content-length: - - '783' + - '782' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:39 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: @@ -114,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 8ce2605e493..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:11:54 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.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/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\":\"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 @@ -114,7 +116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:43 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: @@ -132,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' 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.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/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\":\"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}" @@ -178,7 +180,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:43 GMT + - Thu, 21 Jan 2021 04:11:56 GMT expires: - '-1' odata-version: @@ -196,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1198' 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.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/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-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 @@ -276,7 +278,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:45:44 GMT + - Thu, 21 Jan 2021 04:11:57 GMT expires: - '-1' odata-version: @@ -290,7 +292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '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 56a496a8f0f..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:11:54 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 @@ -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.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/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\":\"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 @@ -114,7 +116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:06 GMT + - Thu, 21 Jan 2021 04:11:55 GMT expires: - '-1' odata-version: @@ -132,7 +134,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '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.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/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\":\"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}" @@ -178,7 +180,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:06 GMT + - Thu, 21 Jan 2021 04:11:56 GMT expires: - '-1' odata-version: @@ -196,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' 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.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/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-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 @@ -272,7 +274,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:07 GMT + - Thu, 21 Jan 2021 04:11:56 GMT expires: - '-1' odata-version: @@ -286,7 +288,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '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 5346d60843d..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:11:54 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 @@ -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.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/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\":\"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 @@ -114,7 +116,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:02 GMT + - Thu, 21 Jan 2021 04:11:55 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.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/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\":\"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}" @@ -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:46:03 GMT + - Thu, 21 Jan 2021 04:11:55 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.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/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-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 @@ -271,7 +273,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:03 GMT + - Thu, 21 Jan 2021 04:11:57 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:12:21 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.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/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-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 @@ -99,7 +101,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:27 GMT + - Thu, 21 Jan 2021 04:12:22 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..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 @@ -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.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=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\":\"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 ]\r\n }\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-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: - no-cache content-length: - - '670' + - '1030' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:21 GMT + - Tue, 23 Feb 2021 18:38:38 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' 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.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/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 + - Tue, 23 Feb 2021 18:38:40 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.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?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 + - Tue, 23 Feb 2021 18:38:43 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:17:17 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.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/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-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}" @@ -96,7 +98,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:33 GMT + - Thu, 21 Jan 2021 04:17:20 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 User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.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/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-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}" @@ -149,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:35 GMT + - Thu, 21 Jan 2021 04:17:22 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.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/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 + - Thu, 21 Jan 2021 04:17:23 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.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/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-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}" @@ -252,7 +254,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:38 GMT + - Thu, 21 Jan 2021 04:17:24 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.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/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-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}" @@ -313,7 +315,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:40 GMT + - Thu, 21 Jan 2021 04:17:25 GMT expires: - '-1' odata-version: @@ -331,7 +333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' 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.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/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-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}" @@ -370,7 +372,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:41 GMT + - Thu, 21 Jan 2021 04:17:27 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.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/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-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 @@ -457,7 +459,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:42 GMT + - Thu, 21 Jan 2021 04:17:28 GMT expires: - '-1' odata-version: @@ -475,7 +477,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1197' 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.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/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-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 @@ -525,7 +527,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:44 GMT + - Thu, 21 Jan 2021 04:17:30 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.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/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-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 @@ -609,7 +611,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:44 GMT + - Thu, 21 Jan 2021 04:17:30 GMT expires: - '-1' odata-version: @@ -627,7 +629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1188' + - '1198' 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.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/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-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 @@ -676,7 +678,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:46 GMT + - Thu, 21 Jan 2021 04:17:32 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.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/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 + - Thu, 21 Jan 2021 04:17:34 GMT expires: - '-1' pragma: @@ -739,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '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 59e5439dfdb..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:17:17 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 @@ -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.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/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-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 @@ -115,11 +117,11 @@ interactions: cache-control: - no-cache content-length: - - '1987' + - '1983' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:46:56 GMT + - Thu, 21 Jan 2021 04:17:20 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:17:18 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 04:17:16 GMT expires: - '-1' odata-version: @@ -52,7 +54,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 --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.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/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-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}" @@ -96,7 +98,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:10 GMT + - Thu, 21 Jan 2021 04:17:18 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.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/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-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}" @@ -149,7 +151,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:12 GMT + - Thu, 21 Jan 2021 04:17:19 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.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/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-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 @@ -237,7 +239,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:12 GMT + - Thu, 21 Jan 2021 04:17:19 GMT expires: - '-1' odata-version: @@ -255,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' 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.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/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-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 @@ -305,7 +307,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:13 GMT + - Thu, 21 Jan 2021 04:17:20 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.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/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-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 @@ -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 + - Thu, 21 Jan 2021 04:17:20 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.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/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-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 @@ -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 + - Thu, 21 Jan 2021 04:17:21 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.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/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-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 @@ -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' + - '2786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:15 GMT + - Thu, 21 Jan 2021 04:17:22 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.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/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-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 @@ -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' + - '2786' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:47:16 GMT + - Thu, 21 Jan 2021 04:17:23 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.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/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-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 @@ -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 + - Thu, 21 Jan 2021 04:17:24 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:33:58 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 @@ -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.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/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\":\"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}" @@ -98,7 +100,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:00 GMT + - Thu, 21 Jan 2021 00:34:00 GMT expires: - '-1' odata-version: @@ -116,7 +118,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_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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:33:56 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.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/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\":\"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}" @@ -98,11 +100,11 @@ interactions: cache-control: - no-cache content-length: - - '962' + - '960' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:40:57 GMT + - Thu, 21 Jan 2021 00:33:58 GMT expires: - '-1' odata-version: @@ -120,7 +122,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '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 394c566147f..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:34:22 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 @@ -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.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/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\":\"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 @@ -105,7 +107,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:21 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 df9faea35bc..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:33:56 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_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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:33:56 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.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/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\":\"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 @@ -110,11 +112,11 @@ interactions: cache-control: - no-cache content-length: - - '1951' + - '1949' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:19 GMT + - Thu, 21 Jan 2021 00:33:57 GMT expires: - '-1' odata-version: @@ -132,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 438a83dc704..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:34:06 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 @@ -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.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/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\":\"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 @@ -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 + - Thu, 21 Jan 2021 00:34:08 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..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:34:22 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' 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.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/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\":\"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 @@ -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 + - Thu, 21 Jan 2021 00:34:22 GMT expires: - '-1' odata-version: @@ -122,7 +124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '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 1ecc3922bea..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:34:20 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.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/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\":\"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}" @@ -94,11 +96,11 @@ interactions: cache-control: - no-cache content-length: - - '849' + - '847' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:50 GMT + - Thu, 21 Jan 2021 00:34:21 GMT expires: - '-1' odata-version: @@ -116,7 +118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1195' 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.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/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\":\"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}" @@ -152,11 +154,11 @@ interactions: cache-control: - no-cache content-length: - - '925' + - '923' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:50 GMT + - Thu, 21 Jan 2021 00:34:22 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.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/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 + - Thu, 21 Jan 2021 00:34:22 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.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/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 + - 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 b2d3259f863..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:34:48 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -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.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/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\":\"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}" @@ -99,7 +101,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:15 GMT + - Thu, 21 Jan 2021 00:34:49 GMT expires: - '-1' odata-version: @@ -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.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/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\":\"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}" @@ -157,7 +159,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:16 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 4c18327e562..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:34:19 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 @@ -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.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/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\":\"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 @@ -106,7 +108,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:25 GMT + - Thu, 21 Jan 2021 00:34:21 GMT expires: - '-1' odata-version: @@ -124,7 +126,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1196' 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.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/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\":\"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 @@ -167,7 +169,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:26 GMT + - Thu, 21 Jan 2021 00:34:22 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.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=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\":\"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 @@ -227,7 +229,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:41:26 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 a56bb535e8b..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 @@ -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.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=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\":\"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 ]\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 + - Thu, 21 Jan 2021 00:34:24 GMT expires: - '-1' odata-version: @@ -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.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/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\":\"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 @@ -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 + - Thu, 21 Jan 2021 00:34:26 GMT expires: - '-1' odata-version: @@ -131,7 +133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' 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.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=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\":\"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 @@ -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 + - Thu, 21 Jan 2021 00:34:27 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.18.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\":\"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 @@ -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 + - Thu, 21 Jan 2021 00:34:30 GMT expires: - '-1' odata-version: @@ -272,7 +274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '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 309b5c7398c..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 @@ -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.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=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\":\"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 ]\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 + - Fri, 19 Feb 2021 21:14:24 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 @@ -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 --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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.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?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\":\"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 ]\r\n }\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-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: - - '666' + - '1026' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:16 GMT + - Fri, 19 Feb 2021 21:14:25 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' + - '1649' 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 --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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + 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/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-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 \ },{\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\":\"Standard\",\"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/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2552' + - '2797' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:19 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/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/43c6da10-2c52-4c1a-ae7d-1f560110f295?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' + - '1198' 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 --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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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/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/43c6da10-2c52-4c1a-ae7d-1f560110f295?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\":\"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/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/43c6da10-2c52-4c1a-ae7d-1f560110f295?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 + - 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/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 --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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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/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/43c6da10-2c52-4c1a-ae7d-1f560110f295?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\":\"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/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/43c6da10-2c52-4c1a-ae7d-1f560110f295?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 + - 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/liveeventoperations/446661ee-6182-40a7-8514-843123f119b9?api-version=2018-07-01 odata-version: - '4.0' pragma: @@ -334,22 +340,247 @@ 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 --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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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/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/43c6da10-2c52-4c1a-ae7d-1f560110f295?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\":\"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/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/43c6da10-2c52-4c1a-ae7d-1f560110f295?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:14: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 live-event create + Connection: + - keep-alive + 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 --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/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 + response: + body: + 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: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:14: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 live-event create + Connection: + - keep-alive + 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 --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/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 + response: + body: + 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: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:14: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 live-event create + Connection: + - keep-alive + 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 --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/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 + response: + body: + 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: + - '172' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:14: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 live-event create + Connection: + - keep-alive + 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 --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/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 + response: + body: + 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/43c6da10-2c52-4c1a-ae7d-1f560110f295?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -357,11 +588,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:26 GMT + - Fri, 19 Feb 2021 21:14:43 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 +620,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 --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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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=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-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 @@ -417,8 +647,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\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -426,17 +656,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' + - '3604' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:26 GMT + - Fri, 19 Feb 2021 21:14:43 GMT expires: - '-1' odata-version: @@ -475,27 +706,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.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=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/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:27 GMT + - Fri, 19 Feb 2021 21:14:44 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/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 pragma: - no-cache server: @@ -524,17 +755,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.18.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/6f49b1d5-8401-4afd-89b8-70e355f77a91?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\":\"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/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/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -542,11 +773,62 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:29 GMT + - Fri, 19 Feb 2021 21:14: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 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/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 + response: + body: + 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/6f49b1d5-8401-4afd-89b8-70e355f77a91?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:14:48 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: @@ -579,17 +861,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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/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/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-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 + 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/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/6f49b1d5-8401-4afd-89b8-70e355f77a91?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:14: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/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 + response: + body: + 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/6f49b1d5-8401-4afd-89b8-70e355f77a91?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -597,11 +932,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:31 GMT + - Fri, 19 Feb 2021 21:14:52 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 +967,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.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=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-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 @@ -657,8 +990,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\":\"Standard\",\"presetName\":\"default720p\",\"stretchMode\":\"AutoSize\",\"keyFrameInterval\":\"PT2S\"\r\n \ },\"crossSiteAccessPolicies\":{\r\n \"clientAccessPolicy\":\"\\r\\n\\r\\n \\r\\n \ \\r\\n \\r\\n @@ -666,17 +999,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' + - '3604' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:32 GMT + - Fri, 19 Feb 2021 21:14:53 GMT expires: - '-1' odata-version: @@ -713,27 +1047,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.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=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/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:32 GMT + - Fri, 19 Feb 2021 21:14:54 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/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 pragma: - no-cache server: @@ -743,7 +1077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -762,17 +1096,123 @@ 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.18.0 + method: GET + 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\":\"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/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?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:14: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 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/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/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?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\":\"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/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?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:14: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 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/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 + response: + body: + 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/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/ae2a9e13-872b-4746-bd8a-69ef4a123d0a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -780,11 +1220,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:35 GMT + - Fri, 19 Feb 2021 21:15:01 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..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 @@ -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.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=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\":\"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 ]\r\n }\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-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: - - '668' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:01 GMT + - Fri, 19 Feb 2021 21:14:25 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 @@ -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.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?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\":\"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 ]\r\n }\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-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: - - '668' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:03 GMT + - Fri, 19 Feb 2021 21:14:26 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ 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"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '381' + - '414' 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.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/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-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\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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/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/5b3ded14-74b7-42c1-94fb-1030154d0df8?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1449' + - '1567' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:06 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/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/5b3ded14-74b7-42c1-94fb-1030154d0df8?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' + - '1199' 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.18.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/5b3ded14-74b7-42c1-94fb-1030154d0df8?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\":\"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/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/5b3ded14-74b7-42c1-94fb-1030154d0df8?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 + - Fri, 19 Feb 2021 21:14:32 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.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=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-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\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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: cache-control: - no-cache content-length: - - '1448' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:09 GMT + - Fri, 19 Feb 2021 21:14:32 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.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?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-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\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"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\"\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 - \ }\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' + - '1738' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:10 GMT + - Fri, 19 Feb 2021 21:14:34 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.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?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\":\"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 ]\r\n }\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-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: - - '668' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:12 GMT + - Fri, 19 Feb 2021 21:14:35 GMT expires: - '-1' odata-version: @@ -416,8 +425,8 @@ 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"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -428,47 +437,48 @@ interactions: Connection: - keep-alive Content-Length: - - '381' + - '414' 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.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/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-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\":\"71a0dc39-7f70-4076-82ad-ff038d9171e9\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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/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/6eb765b0-4da0-4ca2-b797-1299dbf7c357?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1449' + - '1567' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:14 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/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/6eb765b0-4da0-4ca2-b797-1299dbf7c357?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' + - '1199' 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.18.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/6eb765b0-4da0-4ca2-b797-1299dbf7c357?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\":\"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/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/6eb765b0-4da0-4ca2-b797-1299dbf7c357?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 + - Fri, 19 Feb 2021 21:14:40 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.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=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-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\":\"71a0dc39-7f70-4076-82ad-ff038d9171e9\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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: cache-control: - no-cache content-length: - - '1448' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:17 GMT + - Fri, 19 Feb 2021 21:14:41 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.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?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-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\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"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\"\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 - \ }\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\":\"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 + \ \"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\":\"71a0dc39-7f70-4076-82ad-ff038d9171e9\",\"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\"\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 - \ }\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' + - '3449' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:19 GMT + - Fri, 19 Feb 2021 21:14:42 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.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/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/3cdaed85-afe0-434e-96f5-98dc56fe88a3?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:20 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/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/3cdaed85-afe0-434e-96f5-98dc56fe88a3?api-version=2020-05-01 pragma: - no-cache server: @@ -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.18.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/3cdaed85-afe0-434e-96f5-98dc56fe88a3?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\":\"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/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/3cdaed85-afe0-434e-96f5-98dc56fe88a3?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 + - Fri, 19 Feb 2021 21:14:47 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.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?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-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\":\"e64471e5-d614-4a7b-ae2a-911f4b8e5383\",\"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\"\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 - \ }\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' + - '1738' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:25 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 1d4caee3187..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,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.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=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\":\"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 ]\r\n }\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-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: - - '667' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:49 GMT + - Fri, 19 Feb 2021 21:14:25 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1198' 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.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?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\":\"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 ]\r\n }\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-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: - - '667' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:51 GMT + - Fri, 19 Feb 2021 21:14:26 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ 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"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '380' + - '413' 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.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/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-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\":\"dee3caa2-7c3f-4847-a0cc-d1169cef0620\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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/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/5255db91-a65c-4ca4-ad64-479439df6919?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1448' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:53 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/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/5255db91-a65c-4ca4-ad64-479439df6919?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 --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.18.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/5255db91-a65c-4ca4-ad64-479439df6919?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\":\"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/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/5255db91-a65c-4ca4-ad64-479439df6919?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 + - Fri, 19 Feb 2021 21:14:34 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.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=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-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\":\"dee3caa2-7c3f-4847-a0cc-d1169cef0620\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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: cache-control: - no-cache content-length: - - '1447' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:57 GMT + - Fri, 19 Feb 2021 21:14:34 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.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?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-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\":\"dee3caa2-7c3f-4847-a0cc-d1169cef0620\",\"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\"\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 - \ }\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' + - '1736' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:58 GMT + - Fri, 19 Feb 2021 21:14:36 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.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?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\":\"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 ]\r\n }\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-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: - - '667' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:00 GMT + - Fri, 19 Feb 2021 21:14:38 GMT expires: - '-1' odata-version: @@ -416,8 +425,8 @@ 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"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -428,47 +437,48 @@ interactions: Connection: - keep-alive Content-Length: - - '380' + - '413' 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.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/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-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\":\"7830c333-e20e-415d-bed7-bd472c8a2f30\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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/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/96c6ea57-e1b5-4e75-92ec-ae3b9c20f572?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1448' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:01 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/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/96c6ea57-e1b5-4e75-92ec-ae3b9c20f572?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' + - '1199' 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.18.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/96c6ea57-e1b5-4e75-92ec-ae3b9c20f572?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\":\"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/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/96c6ea57-e1b5-4e75-92ec-ae3b9c20f572?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 + - Fri, 19 Feb 2021 21:14:43 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.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=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-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\":\"7830c333-e20e-415d-bed7-bd472c8a2f30\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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: cache-control: - no-cache content-length: - - '1447' + - '1565' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:05 GMT + - Fri, 19 Feb 2021 21:14:43 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.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?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 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-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\":\"7830c333-e20e-415d-bed7-bd472c8a2f30\",\"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\"\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 - \ }\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\":\"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-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\":\"dee3caa2-7c3f-4847-a0cc-d1169cef0620\",\"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\"\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 - \ }\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' + - '3446' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:07 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 f04b6d76dcc..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 @@ -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.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=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\":\"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 ]\r\n }\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-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: - - '663' + - '1023' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:06 GMT + - Fri, 19 Feb 2021 21:14:22 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 @@ -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.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?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\":\"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 ]\r\n }\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-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: - - '663' + - '1023' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:07 GMT + - Fri, 19 Feb 2021 21:14:22 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": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": + {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '350' + - '383' 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.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/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-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\":\"8052702c-4313-4da4-97cb-0bcf24f2be41\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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/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/f43eb0a0-3814-49b6-a36f-66a6e90d83c3?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1431' + - '1549' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:09 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/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/f43eb0a0-3814-49b6-a36f-66a6e90d83c3?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' + - '1199' 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.18.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/f43eb0a0-3814-49b6-a36f-66a6e90d83c3?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\":\"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/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/f43eb0a0-3814-49b6-a36f-66a6e90d83c3?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 + - 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/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.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=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-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\":\"8052702c-4313-4da4-97cb-0bcf24f2be41\",\"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/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/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 - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1784' + - '1902' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:12 GMT + - Fri, 19 Feb 2021 21:14:27 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.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/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/c593daf8-c0ff-428c-a3f9-e794c687bf20?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:13 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/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/c593daf8-c0ff-428c-a3f9-e794c687bf20?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.18.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/c593daf8-c0ff-428c-a3f9-e794c687bf20?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\":\"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/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/c593daf8-c0ff-428c-a3f9-e794c687bf20?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 + - 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/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.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=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-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\":\"8052702c-4313-4da4-97cb-0bcf24f2be41\",\"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/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/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 - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1784' + - '1902' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:16 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 96ae738cc56..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 @@ -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.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=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\":\"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 ]\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 + - Fri, 19 Feb 2021 21:14:22 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 @@ -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.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?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\":\"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 ]\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 + - Fri, 19 Feb 2021 21:14:23 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' + - '1475' 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.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/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-02-19T21:14:24.2469467Z\",\"lastModified\":\"2021-02-19T21:14:24.2469467Z\",\"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\":\"Standard\",\"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/99c0c462-d85e-4ae3-8e46-ac24263b9bd2?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2547' + - '2662' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:39 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/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/99c0c462-d85e-4ae3-8e46-ac24263b9bd2?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' + - '1199' 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.18.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/99c0c462-d85e-4ae3-8e46-ac24263b9bd2?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\":\"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/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/99c0c462-d85e-4ae3-8e46-ac24263b9bd2?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 + - Fri, 19 Feb 2021 21:14:26 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.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=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-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 \ },{\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\":\"Standard\",\"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' + - '2661' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:42 GMT + - Fri, 19 Feb 2021 21:14:26 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.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=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-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 \ },{\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\":\"Standard\",\"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' + - '2661' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:43 GMT + - Fri, 19 Feb 2021 21:14:27 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.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/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 + - Fri, 19 Feb 2021 21:14:27 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.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=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/a0d76407-bba0-4bee-abd5-2dd0d180fdee?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:44 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/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/a0d76407-bba0-4bee-abd5-2dd0d180fdee?api-version=2020-05-01 pragma: - no-cache server: @@ -513,7 +500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -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.18.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/a0d76407-bba0-4bee-abd5-2dd0d180fdee?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\":\"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/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/a0d76407-bba0-4bee-abd5-2dd0d180fdee?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 + - Fri, 19 Feb 2021 21:14:30 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..de857b3fae3 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/recordings/test_live_event_standby.yaml @@ -0,0 +1,473 @@ +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.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: "{\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\":\"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 },\"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: + - '1027' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:14:24 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: + - '1197' + 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 --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 + 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\":\"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 },\"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: + - '1027' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:14: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: '{"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}]}}, "accessToken": + "0abf356884d74b4aacbd7b1ebd3da0f7"}, "preview": {"accessControl": {"ip": {"allow": + []}}}, "encoding": {"encodingType": "Standard"}, "transcriptions": [], "crossSiteAccessPolicies": + {}, "useStaticHostname": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - ams live-event create + Connection: + - keep-alive + Content-Length: + - '464' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -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 + 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-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\":\"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\":\"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/d853b625-28bb-4dd4-b430-9cd19209aa0d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '1566' + content-type: + - application/json; odata.metadata=minimal + date: + - 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/d853b625-28bb-4dd4-b430-9cd19209aa0d?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: + - '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 --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/d853b625-28bb-4dd4-b430-9cd19209aa0d?api-version=2020-05-01 + response: + body: + 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/d853b625-28bb-4dd4-b430-9cd19209aa0d?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '171' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:14: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 live-event create + Connection: + - keep-alive + ParameterSetName: + - -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/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-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\":\"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\":\"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: + cache-control: + - no-cache + content-length: + - '1565' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:14: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 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.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/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/5b841136-f6f5-4272-939e-933ecba32773?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - 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/5b841136-f6f5-4272-939e-933ecba32773?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.18.0 + method: GET + 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\":\"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/5b841136-f6f5-4272-939e-933ecba32773?api-version=2020-05-01 + cache-control: + - no-cache + content-length: + - '171' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:14: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 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.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\":\"South + 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\":\"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/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}" + headers: + cache-control: + - no-cache + content-length: + - '1919' + content-type: + - application/json; odata.metadata=minimal + date: + - Fri, 19 Feb 2021 21:14: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 +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..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 @@ -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.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=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\":\"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 ]\r\n }\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-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: - - '667' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:19 GMT + - Fri, 19 Feb 2021 21:15:32 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 @@ -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.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?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\":\"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 ]\r\n }\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-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: - - '667' + - '1027' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:20 GMT + - Fri, 19 Feb 2021 21:15:32 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ 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"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '380' + - '413' 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.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/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-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\":\"fc4f9db2-c7a3-41f0-a37b-420dd816f9cc\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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/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/46deb0ac-7b43-49ef-a173-5c92a5642f1b?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1448' + - '1566' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:23 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/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/46deb0ac-7b43-49ef-a173-5c92a5642f1b?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' + - '1197' 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.18.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/46deb0ac-7b43-49ef-a173-5c92a5642f1b?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\":\"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/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/46deb0ac-7b43-49ef-a173-5c92a5642f1b?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 + - Fri, 19 Feb 2021 21:15:41 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.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=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-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\":\"fc4f9db2-c7a3-41f0-a37b-420dd816f9cc\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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: cache-control: - no-cache content-length: - - '1447' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:27 GMT + - Fri, 19 Feb 2021 21:15:41 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.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/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/dedafee7-d66f-494c-b14b-17a422f05b04?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:30 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/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/dedafee7-d66f-494c-b14b-17a422f05b04?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.18.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/dedafee7-d66f-494c-b14b-17a422f05b04?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\":\"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/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/dedafee7-d66f-494c-b14b-17a422f05b04?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 + - Fri, 19 Feb 2021 21:15:47 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.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=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-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\":\"fc4f9db2-c7a3-41f0-a37b-420dd816f9cc\",\"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/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/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 - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1801' + - '1918' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:34 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 b80f3ec00d7..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 @@ -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.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=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\":\"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 ]\r\n }\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-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: - - '668' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:57 GMT + - Fri, 19 Feb 2021 21:15:18 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 @@ -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.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?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\":\"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 ]\r\n }\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-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: - - '668' + - '1028' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:58 GMT + - Fri, 19 Feb 2021 21:15:20 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ 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"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '381' + - '414' 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.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/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-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\":\"9d51c3e9-02e0-448c-af32-9e779a3f1b8d\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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/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/718ad8e0-4a6e-4a98-a33e-1aaeccb486ea?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1449' + - '1567' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:01 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/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/718ad8e0-4a6e-4a98-a33e-1aaeccb486ea?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: - - '1191' + - '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 --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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/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/718ad8e0-4a6e-4a98-a33e-1aaeccb486ea?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\":\"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/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/718ad8e0-4a6e-4a98-a33e-1aaeccb486ea?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:05 GMT + - Fri, 19 Feb 2021 21:15:27 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.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=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-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\":\"9d51c3e9-02e0-448c-af32-9e779a3f1b8d\",\"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/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/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 - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1802' + - '1919' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:05 GMT + - Fri, 19 Feb 2021 21:15:27 GMT expires: - '-1' odata-version: @@ -315,27 +321,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.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=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/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:43:07 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/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/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 pragma: - no-cache server: @@ -345,7 +351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -364,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/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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: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/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/c8a16812-1d01-4b41-aaf1-659799680d33?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\":\"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/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/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -382,7 +441,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:09 GMT + - Fri, 19 Feb 2021 21:15:34 GMT expires: - '-1' odata-version: @@ -417,17 +476,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.18.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/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-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 + 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/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/c8a16812-1d01-4b41-aaf1-659799680d33?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -435,7 +494,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:12 GMT + - Fri, 19 Feb 2021 21:15:36 GMT expires: - '-1' odata-version: @@ -470,34 +529,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.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=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-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\":\"9d51c3e9-02e0-448c-af32-9e779a3f1b8d\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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: cache-control: - no-cache content-length: - - '1448' + - '1565' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:12 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 4344b2f187c..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 @@ -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.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=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\":\"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 ]\r\n }\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-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: - - '666' + - '1026' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:29 GMT + - Fri, 19 Feb 2021 21:15:10 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 -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.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?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\":\"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 ]\r\n }\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-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: - - '666' + - '1026' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:30 GMT + - Fri, 19 Feb 2021 21:15:11 GMT expires: - '-1' odata-version: @@ -114,8 +118,8 @@ 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"}, - "crossSiteAccessPolicies": {}, "vanityUrl": false}}' + {"accessControl": {"ip": {"allow": []}}}, "encoding": {"encodingType": "Standard"}, + "transcriptions": [], "crossSiteAccessPolicies": {}, "useStaticHostname": false}}' headers: Accept: - application/json @@ -126,47 +130,48 @@ interactions: Connection: - keep-alive Content-Length: - - '379' + - '412' 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.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/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-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\":\"b5827b51-eafa-4453-8095-bd0cbd3bc120\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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/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/69dace06-c2a2-4c57-9392-beb1077d709a?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1447' + - '1565' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:33 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/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/69dace06-c2a2-4c57-9392-beb1077d709a?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' + - '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 --auto-start User-Agent: - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-media/2.1.0 Azure-SDK-For-Python AZURECLI/2.12.0 + azure-mgmt-media/3.0.0 Azure-SDK-For-Python AZURECLI/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/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/69dace06-c2a2-4c57-9392-beb1077d709a?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\":\"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/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/69dace06-c2a2-4c57-9392-beb1077d709a?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 + - Fri, 19 Feb 2021 21:15:17 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.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=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-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\":\"b5827b51-eafa-4453-8095-bd0cbd3bc120\",\"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/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/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 - \ }\r\n }\r\n}" + \ },\"hostnamePrefix\":null,\"transcriptions\":[\r\n \r\n ]\r\n + \ }\r\n}" headers: cache-control: - no-cache content-length: - - '1800' + - '1918' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:35 GMT + - Fri, 19 Feb 2021 21:15:17 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.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/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\":\"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: @@ -333,7 +339,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:38 GMT + - Fri, 19 Feb 2021 21:15:20 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.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/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-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/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/d514f4a2-6a17-41fc-b6de-8091e05ac112?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 + - 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/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/d514f4a2-6a17-41fc-b6de-8091e05ac112?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' + - '1196' 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.18.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/d514f4a2-6a17-41fc-b6de-8091e05ac112?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\":\"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/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/d514f4a2-6a17-41fc-b6de-8091e05ac112?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 + - Fri, 19 Feb 2021 21:15:25 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.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=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-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, 25 Sep 2020 21:42:44 GMT + - Fri, 19 Feb 2021 21:15:25 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.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/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-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/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/1854a425-5c98-491c-9ad0-488b66bdb453?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 + - 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/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/1854a425-5c98-491c-9ad0-488b66bdb453?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' + - '1195' 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.18.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/1854a425-5c98-491c-9ad0-488b66bdb453?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\":\"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/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/1854a425-5c98-491c-9ad0-488b66bdb453?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 + - Fri, 19 Feb 2021 21:15:31 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.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=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-02-19T21:15:29.3005837Z\",\"lastModified\":\"2021-02-19T21:15:29.7082818Z\",\"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 + - Fri, 19 Feb 2021 21:15:31 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.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=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-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\":\"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-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: - no-cache content-length: - - '1357' + - '1356' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:51 GMT + - Fri, 19 Feb 2021 21:15:34 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.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=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/70522e9a-c5df-4a62-bb0e-a5eb207debea?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:42:52 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/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/70522e9a-c5df-4a62-bb0e-a5eb207debea?api-version=2020-05-01 pragma: - no-cache server: @@ -783,7 +789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -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.18.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/70522e9a-c5df-4a62-bb0e-a5eb207debea?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\":\"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/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/70522e9a-c5df-4a62-bb0e-a5eb207debea?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 + - Fri, 19 Feb 2021 21:15:37 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.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=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-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\":\"b5827b51-eafa-4453-8095-bd0cbd3bc120\",\"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\"\r\n },\"crossSiteAccessPolicies\":{\r\n - \ \"clientAccessPolicy\":null,\"crossDomainPolicy\":null\r\n }\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: cache-control: - no-cache content-length: - - '1446' + - '1564' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:55 GMT + - Fri, 19 Feb 2021 21:15:38 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.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=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 + - 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 c62be2a332b..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 @@ -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.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=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\":\"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 ]\r\n }\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-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: - - '665' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:39 GMT + - Fri, 19 Feb 2021 21:14:57 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: - -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.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?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\":\"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 ]\r\n }\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-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: - - '665' + - '1025' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:42:41 GMT + - Fri, 19 Feb 2021 21:14:59 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.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/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-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\":\"b536c7d4-e526-4982-bed9-a2e6117a2286\",\"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\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/5e062132-1f93-4971-8043-30bfa7a26863?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 + - 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/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/5e062132-1f93-4971-8043-30bfa7a26863?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' + - '1193' 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.18.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/5e062132-1f93-4971-8043-30bfa7a26863?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\":\"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/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/5e062132-1f93-4971-8043-30bfa7a26863?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 + - Fri, 19 Feb 2021 21:15:05 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.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=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-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\":\"b536c7d4-e526-4982-bed9-a2e6117a2286\",\"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\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 + - Fri, 19 Feb 2021 21:15:06 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.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=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-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\":\"b536c7d4-e526-4982-bed9-a2e6117a2286\",\"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\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 + - Fri, 19 Feb 2021 21:15:07 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": "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": "b536c7d4-e526-4982-bed9-a2e6117a2286", + "address": "0.0.0.0"}]}}, "previewLocator": "2a30f630-617b-4d1d-bf00-a0de93910d62", "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.18.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\":\"7eef0b6e91324c639fe2ca79c84e10c1\",\"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\":\"2a30f630-617b-4d1d-bf00-a0de93910d62\",\"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/f3bce542-5789-49b0-9e77-ceb286bf9188?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 + - Fri, 19 Feb 2021 21:15: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/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/f3bce542-5789-49b0-9e77-ceb286bf9188?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' + - '1197' 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.18.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/f3bce542-5789-49b0-9e77-ceb286bf9188?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\":\"f3bce542-5789-49b0-9e77-ceb286bf9188\",\"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/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/f3bce542-5789-49b0-9e77-ceb286bf9188?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 + - Fri, 19 Feb 2021 21:15:13 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.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=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-02-19T21:15:02.1223489Z\",\"lastModified\":\"2021-02-19T21:15:10.0889447Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"PT2S\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"7eef0b6e91324c639fe2ca79c84e10c1\",\"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\":\"2a30f630-617b-4d1d-bf00-a0de93910d62\",\"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 + - Fri, 19 Feb 2021 21:15:13 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..06b2aee7904 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.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=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\":\"29002e3c-9937-4015-bd42-991f729ac9d5\",\"storageAccounts\":[\r\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 + - Thu, 21 Jan 2021 00:39:41 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 @@ -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.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?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\":\"29002e3c-9937-4015-bd42-991f729ac9d5\",\"storageAccounts\":[\r\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 + - Thu, 21 Jan 2021 00:39:43 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.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/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-21T00:39:47.3022153Z\",\"lastModified\":\"2021-01-21T00:39:47.3022153Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"620c4adcabba42ee866a1193967dcecc\",\"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\":\"35b1017f-61af-42a6-9600-90b90ca67cfc\",\"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/e8bcb71a-7992-408b-91e0-ad6502deefe4?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 + - Thu, 21 Jan 2021 00:39: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/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/e8bcb71a-7992-408b-91e0-ad6502deefe4?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' + - '1197' 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.18.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/e8bcb71a-7992-408b-91e0-ad6502deefe4?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\":\"e8bcb71a-7992-408b-91e0-ad6502deefe4\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"cedc3d1b-05d0-4dfd-b384-e8b4f679bb73\"\r\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/e8bcb71a-7992-408b-91e0-ad6502deefe4?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 + - Thu, 21 Jan 2021 00:39:50 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.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=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-21T00:39:47.3190822Z\",\"lastModified\":\"2021-01-21T00:39:47.5367016Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"620c4adcabba42ee866a1193967dcecc\",\"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\":\"35b1017f-61af-42a6-9600-90b90ca67cfc\",\"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 + - Thu, 21 Jan 2021 00:39:50 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.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/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\":\"a69a236e-a8e9-4662-aaa5-2b833d72371e\",\"created\":\"2021-01-21T00:39:53.357Z\",\"lastModified\":\"2021-01-21T00:39:53.357Z\",\"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 + - Thu, 21 Jan 2021 00:39:53 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.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/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-21T00:39:56.5430913Z\",\"lastModified\":\"2021-01-21T00:39:56.5430913Z\",\"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/529a820e-a3e8-442d-8c73-8bc9f0e5f6ff?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 + - Thu, 21 Jan 2021 00:39:57 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/529a820e-a3e8-442d-8c73-8bc9f0e5f6ff?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' + - '1199' 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.18.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/529a820e-a3e8-442d-8c73-8bc9f0e5f6ff?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\":\"529a820e-a3e8-442d-8c73-8bc9f0e5f6ff\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"cedc3d1b-05d0-4dfd-b384-e8b4f679bb73\"\r\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/529a820e-a3e8-442d-8c73-8bc9f0e5f6ff?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 + - Thu, 21 Jan 2021 00:40:01 GMT expires: - '-1' odata-version: @@ -482,13 +488,13 @@ 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.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/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-21T00:39:57.7330761Z\",\"lastModified\":\"2021-01-21T00:39:57.9948819Z\",\"hls\":{\r\n \ \"fragmentsPerTsSegment\":5\r\n }\r\n }\r\n}" headers: cache-control: @@ -498,7 +504,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:19 GMT + - Thu, 21 Jan 2021 00:40:01 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..da96cd35dbb 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.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=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\":\"ff8d9c38-277b-4afa-8bbf-433a8ef89c17\",\"storageAccounts\":[\r\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 + - Thu, 21 Jan 2021 00:39:41 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '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.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?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\":\"ff8d9c38-277b-4afa-8bbf-433a8ef89c17\",\"storageAccounts\":[\r\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 + - Thu, 21 Jan 2021 00:39:42 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.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/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-21T00:39:44.7981126Z\",\"lastModified\":\"2021-01-21T00:39:44.7981126Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"6623eaa8b6e64769ae0ca069b1f11c4b\",\"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\":\"47c754ad-9543-4fb6-9aec-6ea0501a905e\",\"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/7554a827-2ec3-45ef-be59-5ac1fc3f0de6?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 + - Thu, 21 Jan 2021 00:39: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/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/7554a827-2ec3-45ef-be59-5ac1fc3f0de6?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' + - '1194' 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.18.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/7554a827-2ec3-45ef-be59-5ac1fc3f0de6?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\":\"7554a827-2ec3-45ef-be59-5ac1fc3f0de6\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"71faf711-e441-4571-b63f-41ef43c614d5\"\r\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/7554a827-2ec3-45ef-be59-5ac1fc3f0de6?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 + - Thu, 21 Jan 2021 00:39:48 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.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=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-21T00:39:44.81374Z\",\"lastModified\":\"2021-01-21T00:39:45.041059Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"6623eaa8b6e64769ae0ca069b1f11c4b\",\"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\":\"47c754ad-9543-4fb6-9aec-6ea0501a905e\",\"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' + - '1526' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:26 GMT + - Thu, 21 Jan 2021 00:39:48 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.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/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\":\"ff856fed-3a50-4427-a28e-66281c0c0e63\",\"created\":\"2021-01-21T00:39:50.477Z\",\"lastModified\":\"2021-01-21T00:39:50.477Z\",\"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 + - Thu, 21 Jan 2021 00:39:51 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.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/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-21T00:39:52.6523483Z\",\"lastModified\":\"2021-01-21T00:39:52.6523483Z\",\"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/fccc989c-948c-4adf-a433-2219f9e6f434?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 + - Thu, 21 Jan 2021 00:39: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/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/fccc989c-948c-4adf-a433-2219f9e6f434?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.18.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/fccc989c-948c-4adf-a433-2219f9e6f434?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\":\"fccc989c-948c-4adf-a433-2219f9e6f434\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"71faf711-e441-4571-b63f-41ef43c614d5\"\r\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/fccc989c-948c-4adf-a433-2219f9e6f434?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 + - Thu, 21 Jan 2021 00:39:56 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.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=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-21T00:39:53.4516539Z\",\"lastModified\":\"2021-01-21T00:39:53.6551293Z\",\"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 + - Thu, 21 Jan 2021 00:39:56 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.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/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-21T00:39:59.0552819Z\",\"lastModified\":\"2021-01-21T00:39:59.0552819Z\",\"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/2947064a-aca6-4545-9f30-4a3a604d20ff?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 + - Thu, 21 Jan 2021 00:40:00 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/2947064a-aca6-4545-9f30-4a3a604d20ff?api-version=2020-05-01 odata-version: - '4.0' pragma: @@ -572,8 +578,8 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1196' 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.18.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/2947064a-aca6-4545-9f30-4a3a604d20ff?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\":\"2947064a-aca6-4545-9f30-4a3a604d20ff\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"71faf711-e441-4571-b63f-41ef43c614d5\"\r\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/2947064a-aca6-4545-9f30-4a3a604d20ff?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 + - Thu, 21 Jan 2021 00:40:02 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.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=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-21T00:39:59.7597898Z\",\"lastModified\":\"2021-01-21T00:39:59.9417839Z\",\"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 + - Thu, 21 Jan 2021 00:40:02 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.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=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 + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man2000009\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:39:59.7597898Z\",\"lastModified\":\"2021-01-21T00:39:59.9417839Z\",\"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 + \ \"description\":null,\"assetName\":\"asset000005\",\"archiveWindowLength\":\"PT5M\",\"manifestName\":\"man1000008\",\"outputSnapTime\":0,\"resourceState\":\"Running\",\"provisioningState\":\"Succeeded\",\"created\":\"2021-01-21T00:39:53.4516539Z\",\"lastModified\":\"2021-01-21T00:39:53.6551293Z\",\"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 + - Thu, 21 Jan 2021 00:40:05 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.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/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/548e4511-efea-44b8-838a-84cf655ce71d?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Fri, 25 Sep 2020 21:43:41 GMT + - Thu, 21 Jan 2021 00:40:05 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/548e4511-efea-44b8-838a-84cf655ce71d?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' + - '14999' 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.18.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/548e4511-efea-44b8-838a-84cf655ce71d?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\":\"548e4511-efea-44b8-838a-84cf655ce71d\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"71faf711-e441-4571-b63f-41ef43c614d5\"\r\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/548e4511-efea-44b8-838a-84cf655ce71d?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 + - Thu, 21 Jan 2021 00:40:09 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.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=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-21T00:39:53.4516539Z\",\"lastModified\":\"2021-01-21T00:39:53.6551293Z\",\"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 + - Thu, 21 Jan 2021 00:40:11 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..b8991078d65 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.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=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\":\"830485b9-ced9-4602-959a-435df4c7e9cc\",\"storageAccounts\":[\r\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 + - Thu, 21 Jan 2021 00:39:41 GMT expires: - '-1' odata-version: @@ -52,7 +54,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '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.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?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\":\"830485b9-ced9-4602-959a-435df4c7e9cc\",\"storageAccounts\":[\r\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 + - Thu, 21 Jan 2021 00:39:43 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.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/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-21T00:39:47.0626499Z\",\"lastModified\":\"2021-01-21T00:39:47.0626499Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"620bb18e462f4e45a4dfd501deed6236\",\"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\":\"3b4b67df-1987-4b17-9b74-a71480b846ea\",\"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/c0f76233-c2bf-4525-b544-da0f11216e5e?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 + - Thu, 21 Jan 2021 00:39: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/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/c0f76233-c2bf-4525-b544-da0f11216e5e?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' + - '1197' 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.18.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/c0f76233-c2bf-4525-b544-da0f11216e5e?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\":\"c0f76233-c2bf-4525-b544-da0f11216e5e\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"3c1e2ff7-bd6f-46ca-8456-6b02959c7ed5\"\r\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/c0f76233-c2bf-4525-b544-da0f11216e5e?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 + - Thu, 21 Jan 2021 00:39:50 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.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=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-21T00:39:47.0938561Z\",\"lastModified\":\"2021-01-21T00:39:47.3727768Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"620bb18e462f4e45a4dfd501deed6236\",\"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\":\"3b4b67df-1987-4b17-9b74-a71480b846ea\",\"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 + - Thu, 21 Jan 2021 00:39:51 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.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/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\":\"3fbbf3a4-6fe4-4946-9696-f629472265de\",\"created\":\"2021-01-21T00:39:53.173Z\",\"lastModified\":\"2021-01-21T00:39:53.173Z\",\"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:22 GMT + - Thu, 21 Jan 2021 00:39:53 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.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/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-21T00:39:55.4257556Z\",\"lastModified\":\"2021-01-21T00:39:55.4257556Z\",\"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/dda6634c-56ee-4185-a4ce-cd4a7abd3fd8?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 + - Thu, 21 Jan 2021 00:39: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/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/dda6634c-56ee-4185-a4ce-cd4a7abd3fd8?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' + - '1197' 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.18.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/dda6634c-56ee-4185-a4ce-cd4a7abd3fd8?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\":\"dda6634c-56ee-4185-a4ce-cd4a7abd3fd8\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"3c1e2ff7-bd6f-46ca-8456-6b02959c7ed5\"\r\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/dda6634c-56ee-4185-a4ce-cd4a7abd3fd8?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 + - Thu, 21 Jan 2021 00:40: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.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/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-21T00:39:56.6017176Z\",\"lastModified\":\"2021-01-21T00:39:56.8510838Z\",\"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 + - Thu, 21 Jan 2021 00:40:00 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.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=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-21T00:39:56.6017176Z\",\"lastModified\":\"2021-01-21T00:39:56.8510838Z\",\"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 + - Thu, 21 Jan 2021 00:40:01 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..7b1a6cefc79 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.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=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\":\"ebea5f6f-17b4-439c-87d0-0d24f1dc6312\",\"storageAccounts\":[\r\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 + - Thu, 21 Jan 2021 00:39:39 GMT expires: - '-1' odata-version: @@ -53,7 +55,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1195' 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.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?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\":\"ebea5f6f-17b4-439c-87d0-0d24f1dc6312\",\"storageAccounts\":[\r\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 + - Thu, 21 Jan 2021 00:39:41 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.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/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-21T00:39:44.7042568Z\",\"lastModified\":\"2021-01-21T00:39:44.7042568Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"af27f7ce17ff46ebbc3de0c4c282f893\",\"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\":\"204f3241-25d6-489c-91be-eac642b5a5ba\",\"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/077f0685-8d9a-49ab-b7f3-2858f2320400?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1428' + - '1535' content-type: - application/json; odata.metadata=minimal date: - - Fri, 25 Sep 2020 21:43:21 GMT + - Thu, 21 Jan 2021 00:39: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/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/077f0685-8d9a-49ab-b7f3-2858f2320400?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.18.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/077f0685-8d9a-49ab-b7f3-2858f2320400?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\":\"077f0685-8d9a-49ab-b7f3-2858f2320400\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"f474e108-f505-4947-93a1-2b308e9ebf01\"\r\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/077f0685-8d9a-49ab-b7f3-2858f2320400?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 + - Thu, 21 Jan 2021 00:39:47 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.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=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-21T00:39:44.7354889Z\",\"lastModified\":\"2021-01-21T00:39:44.9392552Z\",\"useStaticHostname\":false,\"streamOptions\":[\r\n + \ \r\n ],\"input\":{\r\n \"keyFrameIntervalDuration\":\"\",\"streamingProtocol\":\"FragmentedMP4\",\"accessToken\":\"af27f7ce17ff46ebbc3de0c4c282f893\",\"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\":\"204f3241-25d6-489c-91be-eac642b5a5ba\",\"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 + - Thu, 21 Jan 2021 00:39:48 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.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/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\":\"fb00c932-89d7-473b-b3ae-6cf6fc713e05\",\"created\":\"2021-01-21T00:39:50.533Z\",\"lastModified\":\"2021-01-21T00:39:50.533Z\",\"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 + - Thu, 21 Jan 2021 00:39:51 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.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/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-21T00:39:53.0292248Z\",\"lastModified\":\"2021-01-21T00:39:53.0292248Z\",\"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/f30b5caf-65db-40e9-8dea-3a1e587aeaac?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 + - Thu, 21 Jan 2021 00:39: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/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/f30b5caf-65db-40e9-8dea-3a1e587aeaac?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' + - '1198' 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.18.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/f30b5caf-65db-40e9-8dea-3a1e587aeaac?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\":\"f30b5caf-65db-40e9-8dea-3a1e587aeaac\",\"status\":\"Succeeded\",\"error\":{\r\n + \ \"code\":\"None\",\"message\":null,\"target\":\"f474e108-f505-4947-93a1-2b308e9ebf01\"\r\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/f30b5caf-65db-40e9-8dea-3a1e587aeaac?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 + - Thu, 21 Jan 2021 00:39:57 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.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/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-21T00:39:53.9199827Z\",\"lastModified\":\"2021-01-21T00:39:54.1285101Z\",\"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 + - Thu, 21 Jan 2021 00:39:57 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.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/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-21T00:39:53.9199827Z\",\"lastModified\":\"2021-01-21T00:39:54.1285101Z\",\"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 + - Thu, 21 Jan 2021 00:39:59 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.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/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 + - Thu, 21 Jan 2021 00:39: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 new file mode 100644 index 00000000000..c639202e044 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/ams/tests/latest/test_ams_account_encryption_scenarios.py @@ -0,0 +1,48 @@ +# -------------------------------------------------------------------------------------------- +# 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} --id-system-assigned', 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}') + + 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-type {keySource} --key-identifier {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}') 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..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 @@ -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..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 @@ -15,12 +15,13 @@ 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', }) - 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} --id-system-assigned', 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=[ @@ -107,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=[ @@ -115,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/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..a1ac9589149 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, @@ -23,10 +24,13 @@ def test_live_event_create(self, storage_account_for_create): 'location': 'centralus', 'streamingProtocol': 'RTMP', 'liveEventName': live_event_name, - 'encodingType': 'Basic', + 'encodingType': 'Standard', '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 --transcription-lang {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 --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']) @@ -79,7 +85,7 @@ def test_live_event_start(self, storage_account_for_create): 'location': 'southindia', 'streamingProtocol': 'FragmentedMP4', 'liveEventName': live_event_name, - 'encodingType': 'Basic' + 'encodingType': 'Standard' }) self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}', checks=[ @@ -91,7 +97,7 @@ def test_live_event_start(self, storage_account_for_create): self.check('name', '{liveEventName}'), self.check('location', 'South India'), self.check('input.streamingProtocol', 'FragmentedMP4'), - self.check('encoding.encodingType', 'Basic') + self.check('encoding.encodingType', '{encodingType}') ]) live_event = self.cmd('az ams live-event start -a {amsname} --name {liveEventName} -g {rg}', checks=[ @@ -103,6 +109,45 @@ 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, + 'accessToken': '0abf356884d74b4aacbd7b1ebd3da0f7', + 'encodingType': 'Standard' + }) + + 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} --access-token {accessToken} --tags key=value --ips AllowAll', checks=[ + self.check('name', '{liveEventName}'), + self.check('location', 'South India'), + self.check('input.streamingProtocol', 'FragmentedMP4'), + self.check('encoding.encodingType', '{encodingType}') + ]) + + 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'), + self.check('input.accessToken', '{accessToken}'), + ]).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): @@ -115,7 +160,7 @@ def test_live_event_stop(self, storage_account_for_create): 'location': 'brazilsouth', 'streamingProtocol': 'FragmentedMP4', 'liveEventName': live_event_name, - 'encodingType': 'Basic' + 'encodingType': 'Standard' }) self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}', checks=[ @@ -144,7 +189,7 @@ def test_live_event_stop_and_remove_outputs(self, storage_account_for_create): 'location': 'japaneast', 'streamingProtocol': 'FragmentedMP4', 'liveEventName': live_event_name, - 'encodingType': 'Basic' + 'encodingType': 'Standard' }) self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}', checks=[ @@ -203,7 +248,7 @@ def test_live_event_list(self, storage_account_for_create): 'streamingProtocol': 'FragmentedMP4', 'liveEventName': live_event_name, 'liveEventName2': live_event_name2, - 'encodingType': 'Basic' + 'encodingType': 'Standard' }) self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}', checks=[ @@ -237,7 +282,7 @@ def test_live_event_delete(self, storage_account_for_create): 'streamingProtocol': 'FragmentedMP4', 'liveEventName': live_event_name, 'liveEventName2': live_event_name2, - 'encodingType': 'Basic' + 'encodingType': 'Standard' }) self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}', checks=[ @@ -275,7 +320,7 @@ def test_live_event_reset(self, storage_account_for_create): 'location': 'eastus', 'streamingProtocol': 'FragmentedMP4', 'liveEventName': live_event_name, - 'encodingType': 'Basic' + 'encodingType': 'Standard' }) self.cmd('az ams account create -n {amsname} -g {rg} --storage-account {storageAccount} -l {location}', checks=[ @@ -287,7 +332,7 @@ def test_live_event_reset(self, storage_account_for_create): self.check('name', '{liveEventName}'), self.check('location', 'East US'), self.check('input.streamingProtocol', 'FragmentedMP4'), - self.check('encoding.encodingType', 'Basic') + self.check('encoding.encodingType', '{encodingType}') ]) live_event = self.cmd('az ams live-event reset -a {amsname} -n {liveEventName} -g {rg}', checks=[ @@ -346,10 +391,9 @@ def test_live_event_show(self, storage_account_for_create): 'location': 'westus', 'streamingProtocol': 'RTMP', 'liveEventName': live_event_name, - 'encodingType': 'Basic', + 'encodingType': 'Standard', 'tags': 'key=value', 'previewLocator': self.create_guid(), - 'keyFrameIntervalDuration': 'PT2S', 'description': 'asd', 'accessToken': '0abf356884d74b4aacbd7b1ebd3da0f7', 'clientAccessPolicy': '@' + _get_test_data_file('clientAccessPolicy.xml'), @@ -361,7 +405,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 +415,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=[ diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 7ecac16a791..94f71e8348b 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -55,7 +55,7 @@ azure-mgmt-loganalytics==8.0.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==2.0.0 azure-mgmt-msi==0.2.0 azure-mgmt-netapp==0.14.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 7ecac16a791..94f71e8348b 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -55,7 +55,7 @@ azure-mgmt-loganalytics==8.0.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==2.0.0 azure-mgmt-msi==0.2.0 azure-mgmt-netapp==0.14.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index d2e6fc1dd8f..c55b5fb29c8 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -55,7 +55,7 @@ azure-mgmt-loganalytics==8.0.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==2.0.0 azure-mgmt-msi==0.2.0 azure-mgmt-netapp==0.14.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index e6aa32fd616..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~=2.1,>=2.1.0', + 'azure-mgmt-media~=3.0', 'azure-mgmt-monitor~=2.0.0', 'azure-mgmt-msi~=0.2', 'azure-mgmt-netapp~=0.14.0',