diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/_params.py b/src/azure-cli/azure/cli/command_modules/cosmosdb/_params.py index e9b273eff20..ef44461245c 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/_params.py +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/_params.py @@ -12,14 +12,15 @@ from azure.cli.core.util import shell_safe_json_parse from azure.cli.command_modules.cosmosdb._validators import ( - validate_ip_range_filter, validate_failover_policies, validate_capabilities, - validate_virtual_network_rules) + validate_failover_policies, validate_capabilities, + validate_virtual_network_rules, validate_ip_range_filter) from azure.cli.command_modules.cosmosdb.actions import ( CreateLocation) from azure.cli.command_modules.cosmosdb.custom import ( CosmosKeyTypes) + SQL_GREMLIN_INDEXING_POLICY_EXAMPLE = """--idx "{\\"indexingMode\\": \\"consistent\\", \\"automatic\\": true, \\"includedPaths\\": [{\\"path\\": \\"/*\\"}], \\"excludedPaths\\": [{ \\"path\\": \\"/headquarters/employees/?\\"}, { \\"path\\": \\"/\\\\"_etag\\\\"/?\\"}]}" """ @@ -38,7 +39,7 @@ def load_arguments(self, _): from knack.arguments import CLIArgumentType - from azure.mgmt.cosmosdb.models import KeyKind, DefaultConsistencyLevel, DatabaseAccountKind, TriggerType, TriggerOperation + from azure.mgmt.cosmosdb.models import KeyKind, DefaultConsistencyLevel, DatabaseAccountKind, TriggerType, TriggerOperation, ServerVersion with self.argument_context('cosmosdb') as c: c.argument('account_name', arg_type=name_type, help='Name of the Cosmos DB database account', completer=get_resource_name_completion_list('Microsoft.DocumentDb/databaseAccounts'), id_part='name') @@ -47,6 +48,8 @@ def load_arguments(self, _): with self.argument_context('cosmosdb create') as c: c.argument('account_name', completer=None) c.argument('key_uri', help="The URI of the key vault", is_preview=True) + c.argument('enable_free_tier', arg_type=get_three_state_flag(), help="If enabled the account is free-tier.", is_preview=True) + c.argument('server_version', arg_type=get_enum_type(ServerVersion), help="Valid only for MongoDB accounts.", is_preview=True) for scope in ['cosmosdb create', 'cosmosdb update']: with self.argument_context(scope) as c: @@ -56,7 +59,7 @@ def load_arguments(self, _): c.argument('default_consistency_level', arg_type=get_enum_type(DefaultConsistencyLevel), help="default consistency level of the Cosmos DB database account") c.argument('max_staleness_prefix', type=int, help="when used with Bounded Staleness consistency, this value represents the number of stale requests tolerated. Accepted range for this value is 1 - 2,147,483,647") c.argument('max_interval', type=int, help="when used with Bounded Staleness consistency, this value represents the time amount of staleness (in seconds) tolerated. Accepted range for this value is 1 - 100") - c.argument('ip_range_filter', nargs='+', validator=validate_ip_range_filter, help="firewall support. Specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. IP addresses/ranges must be comma-separated and must not contain any spaces") + c.argument('ip_range_filter', nargs='+', options_list=['--ip-range-filter'], validator=validate_ip_range_filter, help="firewall support. Specifies the set of IP addresses or IP address ranges in CIDR form to be included as the allowed list of client IPs for a given database account. IP addresses/ranges must be comma-separated and must not contain any spaces") c.argument('kind', arg_type=get_enum_type(DatabaseAccountKind), help='The type of Cosmos DB database account to create') c.argument('enable_automatic_failover', arg_type=get_three_state_flag(), help='Enables automatic failover of the write region in the rare event that the region is unavailable due to an outage. Automatic failover will result in a new write region for the account and is chosen based on the failover priorities configured for the account.') c.argument('capabilities', nargs='+', validator=validate_capabilities, help='set custom capabilities on the Cosmos DB database account.') @@ -64,8 +67,8 @@ def load_arguments(self, _): c.argument('virtual_network_rules', nargs='+', validator=validate_virtual_network_rules, help='ACL\'s for virtual network') c.argument('enable_multiple_write_locations', arg_type=get_three_state_flag(), help="Enable Multiple Write Locations") c.argument('disable_key_based_metadata_write_access', arg_type=get_three_state_flag(), help="Disable write operations on metadata resources (databases, containers, throughput) via account keys") - c.argument('enable_public_network', options_list=['--enable-public-network', '-e'], - arg_type=get_three_state_flag(), help="Enable or disable public network access to server.") + c.argument('enable_public_network', options_list=['--enable-public-network', '-e'], arg_type=get_three_state_flag(), help="Enable or disable public network access to server.") + c.argument('enable_analytical_storage', arg_type=get_three_state_flag(), help="Flag to enable log storage on the account.", is_preview=True) for scope in ['cosmosdb regenerate-key', 'cosmosdb keys regenerate']: with self.argument_context(scope) as c: @@ -103,6 +106,7 @@ def load_arguments(self, _): account_name_type = CLIArgumentType(options_list=['--account-name', '-a'], help="Cosmosdb account name.") database_name_type = CLIArgumentType(options_list=['--database-name', '-d'], help='Database name.') container_name_type = CLIArgumentType(options_list=['--container-name', '-c'], help='Container name.') + max_throughput_type = CLIArgumentType(options_list=['--max-throughput'], help='The maximum throughput resource can scale to (RU/s). Provided when the resource is autoscale enabled. The minimum value can be 4000 (RU/s)') with self.argument_context('cosmosdb private-endpoint-connection') as c: c.argument('private_endpoint_connection_name', options_list=['--name', '-n'], required=False, @@ -128,6 +132,7 @@ def load_arguments(self, _): c.argument('account_name', account_name_type, id_part=None) c.argument('database_name', options_list=['--name', '-n'], help="Database name") c.argument('throughput', help='The throughput of SQL database (RU/s). Default value is 400') + c.argument('max_throughput', max_throughput_type) # SQL container with self.argument_context('cosmosdb sql container') as c: @@ -135,10 +140,12 @@ def load_arguments(self, _): c.argument('database_name', database_name_type) c.argument('container_name', options_list=['--name', '-n'], help="Container name") c.argument('partition_key_path', options_list=['--partition-key-path', '-p'], help='Partition Key Path, e.g., \'/address/zipcode\'') + c.argument('partition_key_version', type=int, options_list=['--partition-key-version'], help='The version of partition key.') c.argument('default_ttl', options_list=['--ttl'], type=int, help='Default TTL. If the value is missing or set to "-1", items don’t expire. If the value is set to "n", items will expire "n" seconds after last modified time.') c.argument('indexing_policy', options_list=['--idx'], type=shell_safe_json_parse, completer=FilesCompleter(), help='Indexing Policy, you can enter it as a string or as a file, e.g., --idx @policy-file.json or ' + SQL_GREMLIN_INDEXING_POLICY_EXAMPLE) c.argument('unique_key_policy', options_list=['--unique-key-policy', '-u'], type=shell_safe_json_parse, completer=FilesCompleter(), help='Unique Key Policy, you can enter it as a string or as a file, e.g., --unique-key-policy @policy-file.json or ' + SQL_UNIQUE_KEY_POLICY_EXAMPLE) c.argument('conflict_resolution_policy', options_list=['--conflict-resolution-policy', '-c'], type=shell_safe_json_parse, completer=FilesCompleter(), help='Conflict Resolution Policy, you can enter it as a string or as a file, e.g., --conflict-resolution-policy @policy-file.json or ' + SQL_GREMLIN_CONFLICT_RESOLUTION_POLICY_EXAMPLE) + c.argument('max_throughput', max_throughput_type) c.argument('throughput', help='The throughput of SQL container (RU/s). Default value is 400. Omit this parameter if the database has shared throughput unless the container should have dedicated throughput.') # SQL stored procedure @@ -172,6 +179,7 @@ def load_arguments(self, _): c.argument('account_name', account_name_type, id_part=None) c.argument('database_name', options_list=['--name', '-n'], help="Database name") c.argument('throughput', help='The throughput of MongoDB database (RU/s). Default value is 400') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb mongodb collection') as c: c.argument('account_name', account_name_type, id_part=None) @@ -179,6 +187,8 @@ def load_arguments(self, _): c.argument('collection_name', options_list=['--name', '-n'], help="Collection name") c.argument('shard_key_path', options_list=['--shard'], help="Sharding key path.") c.argument('indexes', options_list=['--idx'], type=shell_safe_json_parse, completer=FilesCompleter(), help='Indexes, you can enter it as a string or as a file, e.g., --idx @indexes-file.json or ' + MONGODB_INDEXES_EXAMPLE) + c.argument('max_throughput', max_throughput_type) + c.argument('analytical_storage_ttl', type=int, help='Analytical TTL, when analytical storage is enabled.') c.argument('throughput', help='The throughput of MongoDB collection (RU/s). Default value is 400. Omit this parameter if the database has shared throughput unless the collection should have dedicated throughput.') # Cassandra @@ -186,6 +196,7 @@ def load_arguments(self, _): c.argument('account_name', account_name_type, id_part=None) c.argument('keyspace_name', options_list=['--name', '-n'], help="Keyspace name") c.argument('throughput', help='The throughput of Cassandra keyspace (RU/s). Default value is 400') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb cassandra table') as c: c.argument('account_name', account_name_type, id_part=None) @@ -193,6 +204,8 @@ def load_arguments(self, _): c.argument('table_name', options_list=['--name', '-n'], help="Table name") c.argument('default_ttl', options_list=['--ttl'], type=int, help='Default TTL. If the value is missing or set to "-1", items don’t expire. If the value is set to "n", items will expire "n" seconds after last modified time.') c.argument('schema', type=shell_safe_json_parse, completer=FilesCompleter(), help='Schema, you can enter it as a string or as a file, e.g., --schema @schema-file.json or ' + CASSANDRA_SCHEMA_EXAMPLE) + c.argument('max_throughput', max_throughput_type) + c.argument('analytical_storage_ttl', type=int, help='Analytical TTL, when analytical storage is enabled.') c.argument('throughput', help='The throughput of Cassandra table (RU/s). Default value is 400. Omit this parameter if the keyspace has shared throughput unless the table should have dedicated throughput.') # Gremlin @@ -200,6 +213,7 @@ def load_arguments(self, _): c.argument('account_name', account_name_type, id_part=None) c.argument('database_name', options_list=['--name', '-n'], help="Database name") c.argument('throughput', help='The throughput Gremlin database (RU/s). Default value is 400') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb gremlin graph') as c: c.argument('account_name', account_name_type, id_part=None) @@ -209,6 +223,7 @@ def load_arguments(self, _): c.argument('default_ttl', options_list=['--ttl'], type=int, help='Default TTL. If the value is missing or set to "-1", items don’t expire. If the value is set to "n", items will expire "n" seconds after last modified time.') c.argument('indexing_policy', options_list=['--idx'], type=shell_safe_json_parse, completer=FilesCompleter(), help='Indexing Policy, you can enter it as a string or as a file, e.g., --idx @policy-file.json or ' + SQL_GREMLIN_INDEXING_POLICY_EXAMPLE) c.argument('conflict_resolution_policy', options_list=['--conflict-resolution-policy', '-c'], type=shell_safe_json_parse, completer=FilesCompleter(), help='Conflict Resolution Policy, you can enter it as a string or as a file, e.g., --conflict-resolution-policy @policy-file.json or ' + SQL_GREMLIN_CONFLICT_RESOLUTION_POLICY_EXAMPLE) + c.argument('max_throughput', max_throughput_type) c.argument('throughput', help='The throughput of Gremlin graph (RU/s). Default value is 400. Omit this parameter if the database has shared throughput unless the graph should have dedicated throughput.') # Table @@ -216,53 +231,63 @@ def load_arguments(self, _): c.argument('account_name', account_name_type, id_part=None) c.argument('table_name', options_list=['--name', '-n'], help="Table name") c.argument('throughput', help='The throughput of Table (RU/s). Default value is 400') + c.argument('max_throughput', max_throughput_type) # Throughput with self.argument_context('cosmosdb sql database throughput') as c: c.argument('account_name', account_name_type, id_part=None) c.argument('database_name', options_list=['--name', '-n'], help="Database name") c.argument('throughput', type=int, help='The throughput of SQL database (RU/s).') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb sql container throughput') as c: c.argument('account_name', account_name_type, id_part=None) c.argument('database_name', database_name_type) c.argument('container_name', options_list=['--name', '-n'], help="Container name") c.argument('throughput', type=int, help='The throughput of SQL container (RU/s).') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb mongodb database throughput') as c: c.argument('account_name', account_name_type, id_part=None) c.argument('database_name', options_list=['--name', '-n'], help="Database name") c.argument('throughput', type=int, help='The throughput of MongoDB database (RU/s).') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb mongodb collection throughput') as c: c.argument('account_name', account_name_type, id_part=None) c.argument('database_name', database_name_type) c.argument('collection_name', options_list=['--name', '-n'], help="Collection name") c.argument('throughput', type=int, help='The throughput of MongoDB collection (RU/s).') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb cassandra keyspace throughput') as c: c.argument('account_name', account_name_type, id_part=None) c.argument('keyspace_name', options_list=['--name', '-n'], help="Keyspace name") c.argument('throughput', type=int, help='The throughput of Cassandra keyspace (RU/s).') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb cassandra table throughput') as c: c.argument('account_name', account_name_type, id_part=None) c.argument('keyspace_name', options_list=['--keyspace-name', '-k'], help="Keyspace name") c.argument('table_name', options_list=['--name', '-n'], help="Table name") c.argument('throughput', type=int, help='The throughput of Cassandra table (RU/s).') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb gremlin database throughput') as c: c.argument('account_name', account_name_type, id_part=None) c.argument('database_name', options_list=['--name', '-n'], help="Database name") c.argument('throughput', type=int, help='The throughput of Gremlin database (RU/s).') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb gremlin graph throughput') as c: c.argument('account_name', account_name_type, id_part=None) c.argument('database_name', database_name_type) c.argument('graph_name', options_list=['--name', '-n'], help="Grapth name") c.argument('throughput', type=int, help='The throughput Gremlin graph (RU/s).') + c.argument('max_throughput', max_throughput_type) with self.argument_context('cosmosdb table throughput') as c: c.argument('account_name', account_name_type, id_part=None) c.argument('table_name', options_list=['--name', '-n'], help="Table name") c.argument('throughput', type=int, help='The throughput of Table (RU/s).') + c.argument('max_throughput', max_throughput_type) diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/_validators.py b/src/azure-cli/azure/cli/command_modules/cosmosdb/_validators.py index 634f3f94c50..dd42c786861 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/_validators.py @@ -17,8 +17,14 @@ def validate_failover_policies(ns): def validate_ip_range_filter(ns): - if ns.ip_range_filter: - ns.ip_range_filter = ",".join(ns.ip_range_filter) + """ Extracts multiple comma-separated ip rules """ + from azure.mgmt.cosmosdb.models import IpAddressOrRange + if ns.ip_range_filter is not None: + ip_rules_list = [] + for item in ns.ip_range_filter: + for i in item.split(","): + ip_rules_list.append(IpAddressOrRange(ip_address_or_range=i)) + ns.ip_range_filter = ip_rules_list def validate_private_endpoint_connection_id(ns): diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/commands.py b/src/azure-cli/azure/cli/command_modules/cosmosdb/commands.py index d6a193ff69b..98baf889078 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/commands.py +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/commands.py @@ -100,7 +100,7 @@ def load_command_table(self, _): g.show_command('list', 'list_by_database_account', transform=gen_dict_to_list_transform(key='values')) # SQL api - with self.command_group('cosmosdb sql', is_preview=True): + with self.command_group('cosmosdb sql'): pass with self.command_group('cosmosdb sql database', cosmosdb_sql_sdk, client_factory=cf_sql_resources) as g: g.custom_command('create', 'cli_cosmosdb_sql_database_create') @@ -139,7 +139,7 @@ def load_command_table(self, _): g.command('delete', 'delete_sql_user_defined_function', confirmation=True) # MongoDB api - with self.command_group('cosmosdb mongodb', is_preview=True): + with self.command_group('cosmosdb mongodb'): pass with self.command_group('cosmosdb mongodb database', cosmosdb_mongo_sdk, client_factory=cf_mongo_db_resources) as g: g.custom_command('create', 'cli_cosmosdb_mongodb_database_create') @@ -157,7 +157,7 @@ def load_command_table(self, _): g.command('delete', 'delete_mongo_db_collection', confirmation=True) # Cassandra api - with self.command_group('cosmosdb cassandra', is_preview=True): + with self.command_group('cosmosdb cassandra'): pass with self.command_group('cosmosdb cassandra keyspace', cosmosdb_cassandra_sdk, client_factory=cf_cassandra_resources) as g: g.custom_command('create', 'cli_cosmosdb_cassandra_keyspace_create') @@ -175,7 +175,7 @@ def load_command_table(self, _): g.command('delete', 'delete_cassandra_table', confirmation=True) # Gremlin api - with self.command_group('cosmosdb gremlin', is_preview=True): + with self.command_group('cosmosdb gremlin'): pass with self.command_group('cosmosdb gremlin database', cosmosdb_gremlin_sdk, client_factory=cf_gremlin_resources) as g: g.custom_command('create', 'cli_cosmosdb_gremlin_database_create') @@ -193,7 +193,7 @@ def load_command_table(self, _): g.command('delete', 'delete_gremlin_graph', confirmation=True) # Table api - with self.command_group('cosmosdb table', cosmosdb_table_sdk, client_factory=cf_table_resources, is_preview=True) as g: + with self.command_group('cosmosdb table', cosmosdb_table_sdk, client_factory=cf_table_resources) as g: g.custom_command('create', 'cli_cosmosdb_table_create') g.custom_command('exists', 'cli_cosmosdb_table_exists') g.command('list', 'list_tables') diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/custom.py b/src/azure-cli/azure/cli/command_modules/cosmosdb/custom.py index 9291d62425f..a0146b8f443 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/custom.py +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/custom.py @@ -43,7 +43,8 @@ GremlinGraphResource, GremlinGraphCreateUpdateParameters, ThroughputSettingsResource, - ThroughputSettingsUpdateParameters + ThroughputSettingsUpdateParameters, + AutoscaleSettings, ) logger = get_logger(__name__) @@ -89,7 +90,10 @@ def cli_cosmosdb_create(cmd, client, enable_multiple_write_locations=None, disable_key_based_metadata_write_access=None, key_uri=None, - enable_public_network=None): + enable_public_network=None, + enable_analytical_storage=None, + enable_free_tier=None, + server_version=None): """Create a new Azure Cosmos DB database account.""" consistency_policy = None if default_consistency_level is not None: @@ -112,13 +116,19 @@ def cli_cosmosdb_create(cmd, client, if enable_public_network is not None: public_network_access = 'Enabled' if enable_public_network else 'Disabled' + api_properties = {} + if kind == DatabaseAccountKind.mongo_db.value: + api_properties['ServerVersion'] = server_version + elif server_version is not None: + raise CLIError('server-version is a valid argument only when kind is MongoDB.') + params = DatabaseAccountCreateUpdateParameters( location=resource_group_location, locations=locations, tags=tags, kind=kind, consistency_policy=consistency_policy, - ip_range_filter=ip_range_filter, + ip_rules=ip_range_filter, is_virtual_network_filter_enabled=enable_virtual_network, enable_automatic_failover=enable_automatic_failover, capabilities=capabilities, @@ -126,7 +136,10 @@ def cli_cosmosdb_create(cmd, client, enable_multiple_write_locations=enable_multiple_write_locations, disable_key_based_metadata_write_access=disable_key_based_metadata_write_access, key_vault_key_uri=key_uri, - public_network_access=public_network_access) + public_network_access=public_network_access, + api_properties=api_properties, + enable_analytical_storage=enable_analytical_storage, + enable_free_tier=enable_free_tier) async_docdb_create = client.create_or_update(resource_group_name, account_name, params) docdb_account = async_docdb_create.result() @@ -150,7 +163,8 @@ def cli_cosmosdb_update(client, virtual_network_rules=None, enable_multiple_write_locations=None, disable_key_based_metadata_write_access=None, - enable_public_network=None): + enable_public_network=None, + enable_analytical_storage=None): """Update an existing Azure Cosmos DB database account. """ existing = client.get(resource_group_name, account_name) @@ -183,14 +197,15 @@ def cli_cosmosdb_update(client, locations=locations, tags=tags, consistency_policy=consistency_policy, - ip_range_filter=ip_range_filter, + ip_rules=ip_range_filter, is_virtual_network_filter_enabled=enable_virtual_network, enable_automatic_failover=enable_automatic_failover, capabilities=capabilities, virtual_network_rules=virtual_network_rules, enable_multiple_write_locations=enable_multiple_write_locations, disable_key_based_metadata_write_access=disable_key_based_metadata_write_access, - public_network_access=public_network_access) + public_network_access=public_network_access, + enable_analytical_storage=enable_analytical_storage) async_docdb_update = client.update(resource_group_name, account_name, params) docdb_account = async_docdb_update.result() @@ -227,11 +242,10 @@ def cli_cosmosdb_sql_database_create(client, resource_group_name, account_name, database_name, - throughput=None): + throughput=None, + max_throughput=None): """Creates an Azure Cosmos DB SQL database""" - options = {} - if throughput: - options['Throughput'] = throughput + options = _get_options(throughput, max_throughput) sql_database_resource = SqlDatabaseCreateUpdateParameters( resource=SqlDatabaseResource(id=database_name), @@ -261,15 +275,18 @@ def _populate_sql_container_definition(sql_container_resource, default_ttl, indexing_policy, unique_key_policy, + partition_key_version, conflict_resolution_policy): if all(arg is None for arg in - [partition_key_path, default_ttl, indexing_policy, unique_key_policy, conflict_resolution_policy]): + [partition_key_path, partition_key_version, default_ttl, indexing_policy, unique_key_policy, conflict_resolution_policy]): return False if partition_key_path is not None: container_partition_key = ContainerPartitionKey() container_partition_key.paths = [partition_key_path] container_partition_key.kind = 'Hash' + if partition_key_version is not None: + container_partition_key.version = partition_key_version sql_container_resource.partition_key = container_partition_key if default_ttl is not None: @@ -293,9 +310,11 @@ def cli_cosmosdb_sql_container_create(client, database_name, container_name, partition_key_path, + partition_key_version=None, default_ttl=None, indexing_policy=DEFAULT_INDEXING_POLICY, throughput=None, + max_throughput=None, unique_key_policy=None, conflict_resolution_policy=None): """Creates an Azure Cosmos DB SQL container """ @@ -306,11 +325,10 @@ def cli_cosmosdb_sql_container_create(client, default_ttl, indexing_policy, unique_key_policy, + partition_key_version, conflict_resolution_policy) - options = {} - if throughput: - options['Throughput'] = throughput + options = _get_options(throughput, max_throughput) sql_container_create_update_resource = SqlContainerCreateUpdateParameters( resource=sql_container_resource, @@ -346,6 +364,7 @@ def cli_cosmosdb_sql_container_update(client, default_ttl, indexing_policy, None, + None, None): logger.debug('replacing SQL container') @@ -517,11 +536,10 @@ def cli_cosmosdb_gremlin_database_create(client, resource_group_name, account_name, database_name, - throughput=None): + throughput=None, + max_throughput=None): """Creates an Azure Cosmos DB Gremlin database""" - options = {} - if throughput: - options['Throughput'] = throughput + options = _get_options(throughput, max_throughput) gremlin_database_resource = GremlinDatabaseCreateUpdateParameters( resource=GremlinDatabaseResource(id=database_name), @@ -581,6 +599,7 @@ def cli_cosmosdb_gremlin_graph_create(client, default_ttl=None, indexing_policy=DEFAULT_INDEXING_POLICY, throughput=None, + max_throughput=None, conflict_resolution_policy=None): """Creates an Azure Cosmos DB Gremlin graph """ gremlin_graph_resource = GremlinGraphResource(id=graph_name) @@ -591,9 +610,7 @@ def cli_cosmosdb_gremlin_graph_create(client, indexing_policy, conflict_resolution_policy) - options = {} - if throughput: - options['Throughput'] = throughput + options = _get_options(throughput, max_throughput) gremlin_graph_create_update_resource = GremlinGraphCreateUpdateParameters( resource=gremlin_graph_resource, @@ -660,11 +677,10 @@ def cli_cosmosdb_mongodb_database_create(client, resource_group_name, account_name, database_name, - throughput=None): + throughput=None, + max_throughput=None): """Create an Azure Cosmos DB MongoDB database""" - options = {} - if throughput: - options['Throughput'] = throughput + options = _get_options(throughput, max_throughput) mongodb_database_resource = MongoDBDatabaseCreateUpdateParameters( resource=MongoDBDatabaseResource(id=database_name), @@ -689,7 +705,7 @@ def cli_cosmosdb_mongodb_database_exists(client, return True -def _populate_mongodb_collection_definition(mongodb_collection_resource, shard_key_path, indexes): +def _populate_mongodb_collection_definition(mongodb_collection_resource, shard_key_path, indexes, analytical_storage_ttl): if all(arg is None for arg in [shard_key_path, indexes]): return False @@ -699,6 +715,9 @@ def _populate_mongodb_collection_definition(mongodb_collection_resource, shard_k if indexes is not None: mongodb_collection_resource.indexes = indexes + if analytical_storage_ttl is not None: + mongodb_collection_resource.analytical_storage_ttl = analytical_storage_ttl + return True @@ -709,15 +728,15 @@ def cli_cosmosdb_mongodb_collection_create(client, collection_name, shard_key_path=None, indexes=None, - throughput=None): + throughput=None, + max_throughput=None, + analytical_storage_ttl=None): """Create an Azure Cosmos DB MongoDB collection""" mongodb_collection_resource = MongoDBCollectionResource(id=collection_name) - _populate_mongodb_collection_definition(mongodb_collection_resource, shard_key_path, indexes) + _populate_mongodb_collection_definition(mongodb_collection_resource, shard_key_path, indexes, analytical_storage_ttl) - options = {} - if throughput: - options['Throughput'] = throughput + options = _get_options(throughput, max_throughput) mongodb_collection_create_update_resource = MongoDBCollectionCreateUpdateParameters( resource=mongodb_collection_resource, @@ -735,8 +754,8 @@ def cli_cosmosdb_mongodb_collection_update(client, account_name, database_name, collection_name, - indexes=None): - + indexes=None, + analytical_storage_ttl=None): """Updates an Azure Cosmos DB MongoDB collection """ logger.debug('reading MongoDB collection') mongodb_collection = client.get_mongo_db_collection(resource_group_name, @@ -746,8 +765,9 @@ def cli_cosmosdb_mongodb_collection_update(client, mongodb_collection_resource = MongoDBCollectionResource(id=collection_name) mongodb_collection_resource.shard_key = mongodb_collection.resource.shard_key mongodb_collection_resource.indexes = mongodb_collection.resource.indexes + mongodb_collection_resource.analytical_storage_ttl = mongodb_collection.resource.analytical_storage_ttl - if _populate_mongodb_collection_definition(mongodb_collection_resource, None, indexes): + if _populate_mongodb_collection_definition(mongodb_collection_resource, None, indexes, analytical_storage_ttl): logger.debug('replacing MongoDB collection') mongodb_collection_create_update_resource = MongoDBCollectionCreateUpdateParameters( @@ -779,11 +799,10 @@ def cli_cosmosdb_cassandra_keyspace_create(client, resource_group_name, account_name, keyspace_name, - throughput=None): + throughput=None, + max_throughput=None): """Create an Azure Cosmos DB Cassandra keyspace""" - options = {} - if throughput: - options['Throughput'] = throughput + options = _get_options(throughput, max_throughput) cassandra_keyspace_resource = CassandraKeyspaceCreateUpdateParameters( resource=CassandraKeyspaceResource(id=keyspace_name), @@ -808,8 +827,8 @@ def cli_cosmosdb_cassandra_keyspace_exists(client, return True -def _populate_cassandra_table_definition(cassandra_table_resource, default_ttl, schema): - if all(arg is None for arg in [default_ttl, schema]): +def _populate_cassandra_table_definition(cassandra_table_resource, default_ttl, schema, analytical_storage_ttl): + if all(arg is None for arg in [default_ttl, schema, analytical_storage_ttl]): return False if default_ttl is not None: @@ -818,6 +837,9 @@ def _populate_cassandra_table_definition(cassandra_table_resource, default_ttl, if schema is not None: cassandra_table_resource.schema = schema + if analytical_storage_ttl is not None: + cassandra_table_resource.analytical_storage_ttl = analytical_storage_ttl + return True @@ -828,15 +850,15 @@ def cli_cosmosdb_cassandra_table_create(client, table_name, schema, default_ttl=None, - throughput=None): + throughput=None, + max_throughput=None, + analytical_storage_ttl=None): """Create an Azure Cosmos DB Cassandra table""" cassandra_table_resource = CassandraTableResource(id=table_name) - _populate_cassandra_table_definition(cassandra_table_resource, default_ttl, schema) + _populate_cassandra_table_definition(cassandra_table_resource, default_ttl, schema, analytical_storage_ttl) - options = {} - if throughput: - options['Throughput'] = throughput + options = _get_options(throughput, max_throughput) cassandra_table_create_update_resource = CassandraTableCreateUpdateParameters( resource=cassandra_table_resource, @@ -855,7 +877,8 @@ def cli_cosmosdb_cassandra_table_update(client, keyspace_name, table_name, default_ttl=None, - schema=None): + schema=None, + analytical_storage_ttl=None): """Update an Azure Cosmos DB Cassandra table""" logger.debug('reading Cassandra table') cassandra_table = client.get_cassandra_table(resource_group_name, account_name, keyspace_name, table_name) @@ -863,8 +886,9 @@ def cli_cosmosdb_cassandra_table_update(client, cassandra_table_resource = CassandraTableResource(id=table_name) cassandra_table_resource.default_ttl = cassandra_table.resource.default_ttl cassandra_table_resource.schema = cassandra_table.resource.schema + cassandra_table_resource.analytical_storage_ttl = cassandra_table.resource.analytical_storage_ttl - if _populate_cassandra_table_definition(cassandra_table_resource, default_ttl, schema): + if _populate_cassandra_table_definition(cassandra_table_resource, default_ttl, schema, analytical_storage_ttl): logger.debug('replacing Cassandra table') cassandra_table_create_update_resource = CassandraTableCreateUpdateParameters( @@ -896,11 +920,10 @@ def cli_cosmosdb_table_create(client, resource_group_name, account_name, table_name, - throughput=None): + throughput=None, + max_throughput=None): """Create an Azure Cosmos DB table""" - options = {} - if throughput: - options['Throughput'] = throughput + options = _get_options(throughput, max_throughput) table = TableCreateUpdateParameters( resource=TableResource(id=table_name), @@ -922,10 +945,9 @@ def cli_cosmosdb_table_exists(client, return True -def cli_cosmosdb_sql_database_throughput_update(client, resource_group_name, account_name, database_name, throughput): +def cli_cosmosdb_sql_database_throughput_update(client, resource_group_name, account_name, database_name, throughput=None, max_throughput=None): """Update an Azure Cosmos DB SQL database throughput""" - throughput_resource = ThroughputSettingsResource(throughput=throughput) - throughput_update_resource = ThroughputSettingsUpdateParameters(resource=throughput_resource) + throughput_update_resource = _get_throughput_settings_update_parameters(throughput, max_throughput) return client.update_sql_database_throughput(resource_group_name, account_name, database_name, throughput_update_resource) @@ -934,10 +956,10 @@ def cli_cosmosdb_sql_container_throughput_update(client, account_name, database_name, container_name, - throughput): + throughput=None, + max_throughput=None): """Update an Azure Cosmos DB SQL container throughput""" - throughput_resource = ThroughputSettingsResource(throughput=throughput) - throughput_update_resource = ThroughputSettingsUpdateParameters(resource=throughput_resource) + throughput_update_resource = _get_throughput_settings_update_parameters(throughput, max_throughput) return client.update_sql_container_throughput(resource_group_name, account_name, database_name, @@ -949,10 +971,10 @@ def cli_cosmosdb_mongodb_database_throughput_update(client, resource_group_name, account_name, database_name, - throughput): + throughput=None, + max_throughput=None): """Update an Azure Cosmos DB MongoDB database throughput""" - throughput_resource = ThroughputSettingsResource(throughput=throughput) - throughput_update_resource = ThroughputSettingsUpdateParameters(resource=throughput_resource) + throughput_update_resource = _get_throughput_settings_update_parameters(throughput, max_throughput) return client.update_mongo_db_database_throughput(resource_group_name, account_name, database_name, @@ -964,10 +986,10 @@ def cli_cosmosdb_mongodb_collection_throughput_update(client, account_name, database_name, collection_name, - throughput): + throughput=None, + max_throughput=None): """Update an Azure Cosmos DB MongoDB collection throughput""" - throughput_resource = ThroughputSettingsResource(throughput=throughput) - throughput_update_resource = ThroughputSettingsUpdateParameters(resource=throughput_resource) + throughput_update_resource = _get_throughput_settings_update_parameters(throughput, max_throughput) return client.update_mongo_db_collection_throughput(resource_group_name, account_name, database_name, @@ -979,10 +1001,10 @@ def cli_cosmosdb_cassandra_keyspace_throughput_update(client, resource_group_name, account_name, keyspace_name, - throughput): + throughput=None, + max_throughput=None): """Update an Azure Cosmos DB Cassandra keyspace throughput""" - throughput_resource = ThroughputSettingsResource(throughput=throughput) - throughput_update_resource = ThroughputSettingsUpdateParameters(resource=throughput_resource) + throughput_update_resource = _get_throughput_settings_update_parameters(throughput, max_throughput) return client.update_cassandra_keyspace_throughput(resource_group_name, account_name, keyspace_name, @@ -994,10 +1016,10 @@ def cli_cosmosdb_cassandra_table_throughput_update(client, account_name, keyspace_name, table_name, - throughput): + throughput=None, + max_throughput=None): """Update an Azure Cosmos DB Cassandra table throughput""" - throughput_resource = ThroughputSettingsResource(throughput=throughput) - throughput_update_resource = ThroughputSettingsUpdateParameters(resource=throughput_resource) + throughput_update_resource = _get_throughput_settings_update_parameters(throughput, max_throughput) return client.update_cassandra_table_throughput(resource_group_name, account_name, keyspace_name, @@ -1009,10 +1031,10 @@ def cli_cosmosdb_gremlin_database_throughput_update(client, resource_group_name, account_name, database_name, - throughput): + throughput=None, + max_throughput=None): """Update an Azure Cosmos DB Gremlin database throughput""" - throughput_resource = ThroughputSettingsResource(throughput=throughput) - throughput_update_resource = ThroughputSettingsUpdateParameters(resource=throughput_resource) + throughput_update_resource = _get_throughput_settings_update_parameters(throughput, max_throughput) return client.update_gremlin_database_throughput(resource_group_name, account_name, database_name, @@ -1024,10 +1046,10 @@ def cli_cosmosdb_gremlin_graph_throughput_update(client, account_name, database_name, graph_name, - throughput): + throughput=None, + max_throughput=None): """Update an Azure Cosmos DB Gremlin graph throughput""" - throughput_resource = ThroughputSettingsResource(throughput=throughput) - throughput_update_resource = ThroughputSettingsUpdateParameters(resource=throughput_resource) + throughput_update_resource = _get_throughput_settings_update_parameters(throughput, max_throughput) return client.update_gremlin_graph_throughput(resource_group_name, account_name, database_name, @@ -1039,13 +1061,25 @@ def cli_cosmosdb_table_throughput_update(client, resource_group_name, account_name, table_name, - throughput): + throughput=None, + max_throughput=None): """Update an Azure Cosmos DB table throughput""" - throughput_resource = ThroughputSettingsResource(throughput=throughput) - throughput_update_resource = ThroughputSettingsUpdateParameters(resource=throughput_resource) + throughput_update_resource = _get_throughput_settings_update_parameters(throughput, max_throughput) return client.update_table_throughput(resource_group_name, account_name, table_name, throughput_update_resource) +def _get_throughput_settings_update_parameters(throughput=None, max_throughput=None): + + if throughput and max_throughput: + raise CLIError("Please provide max-throughput if your resource is autoscale enabled otherwise provide throughput.") + if throughput: + throughput_resource = ThroughputSettingsResource(throughput=throughput) + elif max_throughput: + throughput_resource = ThroughputSettingsResource(autoscale_settings=AutoscaleSettings(max_throughput=max_throughput)) + + return ThroughputSettingsUpdateParameters(resource=throughput_resource) + + def cli_cosmosdb_network_rule_list(client, resource_group_name, account_name): """ Lists the virtual network accounts associated with a Cosmos DB account """ cosmos_db_account = client.get(resource_group_name, account_name) @@ -1167,6 +1201,17 @@ def reject_private_endpoint_connection(client, resource_group_name, account_name ) +def _get_options(throughput=None, max_throughput=None): + options = {} + if throughput and max_throughput: + raise CLIError("Please provide max-throughput if your resource is autoscale enabled otherwise provide throughput.") + if throughput: + options['throughput'] = throughput + if max_throughput: + options['autoscaleSettings'] = AutoscaleSettings(max_throughput=max_throughput) + return options + + ###################### # data plane APIs ###################### diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_check_name_exists_database_account.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_check_name_exists_database_account.yaml index bd44b6c984c..be95dd1beff 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_check_name_exists_database_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_check_name_exists_database_account.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/providers/Microsoft.DocumentDB/databaseAccountNames/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/providers/Microsoft.DocumentDB/databaseAccountNames/cli000002?api-version=2020-04-01 response: body: string: '' @@ -26,9 +26,9 @@ interactions: cache-control: - no-store, no-cache content-length: - - '147' + - '148' date: - - Wed, 11 Dec 2019 00:52:15 GMT + - Thu, 18 Jun 2020 20:03:47 GMT pragma: - no-cache server: @@ -54,15 +54,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T00:52:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 00:52:15 GMT + - Thu, 18 Jun 2020 20:03:48 GMT expires: - '-1' pragma: @@ -88,7 +88,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -99,41 +99,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1559' + - '1677' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_account6eubjmlsidpyjz43c2ky772pxbp4qvl75vi5jbbgak43wugr4j/providers/Microsoft.DocumentDB/databaseAccounts/cliee6d5mi6xmlevootg7e7f7wyusvpqgamlihkj?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountqe6inawvj7rop47lqeiu2hpyujqjpbppblhghefvazgtcfbm3c/providers/Microsoft.DocumentDB/databaseAccounts/cliynktcbcndamhjjudf2hwhodgrbzvjng454xmo?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:52:16 GMT + - Thu, 18 Jun 2020 20:03:54 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 pragma: - no-cache server: @@ -147,9 +147,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: Ok @@ -167,24 +167,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:52:47 GMT + - Thu, 18 Jun 2020 20:04:24 GMT pragma: - no-cache server: @@ -198,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -216,24 +216,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:53:17 GMT + - Thu, 18 Jun 2020 20:04:55 GMT pragma: - no-cache server: @@ -247,7 +247,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -265,24 +265,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:53:48 GMT + - Thu, 18 Jun 2020 20:05:25 GMT pragma: - no-cache server: @@ -296,7 +296,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -314,24 +314,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:54:18 GMT + - Thu, 18 Jun 2020 20:05:55 GMT pragma: - no-cache server: @@ -345,7 +345,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -363,24 +363,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:54:49 GMT + - Thu, 18 Jun 2020 20:06:25 GMT pragma: - no-cache server: @@ -394,7 +394,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -412,24 +412,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:55:19 GMT + - Thu, 18 Jun 2020 20:06:56 GMT pragma: - no-cache server: @@ -443,7 +443,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -461,24 +461,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:55:49 GMT + - Thu, 18 Jun 2020 20:07:27 GMT pragma: - no-cache server: @@ -492,7 +492,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -510,24 +510,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:56:21 GMT + - Thu, 18 Jun 2020 20:07:57 GMT pragma: - no-cache server: @@ -541,7 +541,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -559,24 +559,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:56:51 GMT + - Thu, 18 Jun 2020 20:08:27 GMT pragma: - no-cache server: @@ -590,7 +590,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -608,24 +608,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:57:21 GMT + - Thu, 18 Jun 2020 20:08:57 GMT pragma: - no-cache server: @@ -639,7 +639,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -657,24 +657,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:57:52 GMT + - Thu, 18 Jun 2020 20:09:27 GMT pragma: - no-cache server: @@ -688,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -706,24 +706,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:58:22 GMT + - Thu, 18 Jun 2020 20:09:59 GMT pragma: - no-cache server: @@ -737,7 +737,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -755,24 +755,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:58:53 GMT + - Thu, 18 Jun 2020 20:10:29 GMT pragma: - no-cache server: @@ -786,7 +786,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -804,24 +804,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/75878ce1-82f0-486b-abf3-5962f5592ba4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:23 GMT + - Thu, 18 Jun 2020 20:10:59 GMT pragma: - no-cache server: @@ -835,7 +835,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -853,29 +853,960 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:11:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:12:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:12:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:13:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:13:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:14:02 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:14:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:15:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:15:33 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:16:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:16:33 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:17:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:17:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:18:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:18:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/435113ba-8691-4d6e-b4a1-307d96429ae5?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_account6eubjmlsidpyjz43c2ky772pxbp4qvl75vi5jbbgak43wugr4j/providers/Microsoft.DocumentDB/databaseAccounts/cliee6d5mi6xmlevootg7e7f7wyusvpqgamlihkj?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountqe6inawvj7rop47lqeiu2hpyujqjpbppblhghefvazgtcfbm3c/providers/Microsoft.DocumentDB/databaseAccounts/cliynktcbcndamhjjudf2hwhodgrbzvjng454xmo?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:23 GMT + - Thu, 18 Jun 2020 20:20:38 GMT pragma: - no-cache server: @@ -889,7 +1820,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -907,31 +1838,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_account6eubjmlsidpyjz43c2ky772pxbp4qvl75vi5jbbgak43wugr4j/providers/Microsoft.DocumentDB/databaseAccounts/cliee6d5mi6xmlevootg7e7f7wyusvpqgamlihkj?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountqe6inawvj7rop47lqeiu2hpyujqjpbppblhghefvazgtcfbm3c/providers/Microsoft.DocumentDB/databaseAccounts/cliynktcbcndamhjjudf2hwhodgrbzvjng454xmo?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:25 GMT + - Thu, 18 Jun 2020 20:20:38 GMT pragma: - no-cache server: @@ -945,7 +1876,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -963,12 +1894,12 @@ interactions: ParameterSetName: - -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: HEAD - uri: https://management.azure.com/providers/Microsoft.DocumentDB/databaseAccountNames/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/providers/Microsoft.DocumentDB/databaseAccountNames/cli000002?api-version=2020-04-01 response: body: string: '' @@ -978,7 +1909,7 @@ interactions: content-length: - '0' date: - - Wed, 11 Dec 2019 00:59:25 GMT + - Thu, 18 Jun 2020 20:20:39 GMT pragma: - no-cache server: @@ -988,7 +1919,7 @@ interactions: x-content-type-options: - nosniff x-ms-activity-id: - - 799dd524-1bb1-11ea-a574-a08cfdd714a6 + - 2d58f48e-b1a1-11ea-88a1-b46bfc3d8f4d status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_keyspace.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_keyspace.yaml index 82455982850..ed298f0575e 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_keyspace.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_keyspace.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_cassandra_keyspace000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001","name":"cli_test_cosmosdb_cassandra_keyspace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-18T20:18:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001","name":"cli_test_cosmosdb_cassandra_keyspace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 20:19:00 GMT + - Thu, 18 Jun 2020 20:03:47 GMT expires: - '-1' pragma: @@ -47,7 +47,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}]}}' + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}], + "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +59,41 @@ interactions: Connection: - keep-alive Content-Length: - - '245' + - '266' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1512' + - '1559' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:04 GMT + - Thu, 18 Jun 2020 20:03:53 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 pragma: - no-cache server: @@ -108,7 +109,252 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:04:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:04:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:06:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,10 +372,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +385,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:34 GMT + - Thu, 18 Jun 2020 20:06:55 GMT pragma: - no-cache server: @@ -175,10 +421,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +434,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:04 GMT + - Thu, 18 Jun 2020 20:07:25 GMT pragma: - no-cache server: @@ -224,10 +470,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +483,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:34 GMT + - Thu, 18 Jun 2020 20:07:56 GMT pragma: - no-cache server: @@ -273,10 +519,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +532,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:05 GMT + - Thu, 18 Jun 2020 20:08:26 GMT pragma: - no-cache server: @@ -322,10 +568,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +581,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:35 GMT + - Thu, 18 Jun 2020 20:08:56 GMT pragma: - no-cache server: @@ -371,10 +617,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +630,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:05 GMT + - Thu, 18 Jun 2020 20:09:27 GMT pragma: - no-cache server: @@ -420,10 +666,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +679,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:35 GMT + - Thu, 18 Jun 2020 20:09:57 GMT pragma: - no-cache server: @@ -469,10 +715,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +728,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:06 GMT + - Thu, 18 Jun 2020 20:10:27 GMT pragma: - no-cache server: @@ -518,10 +764,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +777,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:36 GMT + - Thu, 18 Jun 2020 20:10:58 GMT pragma: - no-cache server: @@ -567,10 +813,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +826,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:06 GMT + - Thu, 18 Jun 2020 20:11:29 GMT pragma: - no-cache server: @@ -616,10 +862,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +875,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:37 GMT + - Thu, 18 Jun 2020 20:11:58 GMT pragma: - no-cache server: @@ -665,10 +911,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +924,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:07 GMT + - Thu, 18 Jun 2020 20:12:30 GMT pragma: - no-cache server: @@ -714,10 +960,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +973,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:37 GMT + - Thu, 18 Jun 2020 20:13:00 GMT pragma: - no-cache server: @@ -763,10 +1009,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +1022,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:07 GMT + - Thu, 18 Jun 2020 20:13:30 GMT pragma: - no-cache server: @@ -812,10 +1058,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +1071,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:38 GMT + - Thu, 18 Jun 2020 20:14:00 GMT pragma: - no-cache server: @@ -861,10 +1107,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +1120,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:08 GMT + - Thu, 18 Jun 2020 20:14:31 GMT pragma: - no-cache server: @@ -910,10 +1156,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +1169,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:38 GMT + - Thu, 18 Jun 2020 20:15:01 GMT pragma: - no-cache server: @@ -959,10 +1205,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +1218,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:09 GMT + - Thu, 18 Jun 2020 20:15:31 GMT pragma: - no-cache server: @@ -1008,10 +1254,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1267,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:39 GMT + - Thu, 18 Jun 2020 20:16:02 GMT pragma: - no-cache server: @@ -1057,10 +1303,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1070,11 +1316,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:09 GMT + - Thu, 18 Jun 2020 20:16:32 GMT pragma: - no-cache server: @@ -1106,10 +1352,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1119,11 +1365,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:39 GMT + - Thu, 18 Jun 2020 20:17:03 GMT pragma: - no-cache server: @@ -1155,10 +1401,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1168,11 +1414,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:10 GMT + - Thu, 18 Jun 2020 20:17:33 GMT pragma: - no-cache server: @@ -1204,10 +1450,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1217,11 +1463,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:40 GMT + - Thu, 18 Jun 2020 20:18:04 GMT pragma: - no-cache server: @@ -1253,10 +1499,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1266,11 +1512,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:11 GMT + - Thu, 18 Jun 2020 20:18:34 GMT pragma: - no-cache server: @@ -1302,10 +1548,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1315,11 +1561,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:41 GMT + - Thu, 18 Jun 2020 20:19:05 GMT pragma: - no-cache server: @@ -1351,10 +1597,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1364,11 +1610,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:11 GMT + - Thu, 18 Jun 2020 20:19:36 GMT pragma: - no-cache server: @@ -1400,10 +1646,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1413,11 +1659,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:42 GMT + - Thu, 18 Jun 2020 20:20:06 GMT pragma: - no-cache server: @@ -1449,10 +1695,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1462,11 +1708,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0f3f9f20-ee58-4fdb-b198-58b8e0030374?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ef08ab3-925f-4976-8072-df640e590b30?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:12 GMT + - Thu, 18 Jun 2020 20:20:37 GMT pragma: - no-cache server: @@ -1498,29 +1744,29 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","cassandraEndpoint":"https://cli000003.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","cassandraEndpoint":"https://cli000003.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1895' + - '1942' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:12 GMT + - Thu, 18 Jun 2020 20:20:37 GMT pragma: - no-cache server: @@ -1552,31 +1798,31 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","cassandraEndpoint":"https://cli000003.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","cassandraEndpoint":"https://cli000003.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1895' + - '1942' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:12 GMT + - Thu, 18 Jun 2020 20:20:37 GMT pragma: - no-cache server: @@ -1608,27 +1854,27 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-04-01 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: cc07425c-9946-11ea-b641-a08cfdd714a6, - Request URI: /apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/2fb973d4-cda8-48d2-9fbd-36d95b148053/partitions/963d15a7-e7fe-4a90-a07d-594bb981f4f6/replicas/132343016857977018s, - RequestStats: \\r\\nRequestStartTime: 2020-05-18T20:33:15.0078823Z, RequestEndTime: - 2020-05-18T20:33:15.0178565Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-05-18T20:33:15.0178565Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.14:11300/apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/2fb973d4-cda8-48d2-9fbd-36d95b148053/partitions/963d15a7-e7fe-4a90-a07d-594bb981f4f6/replicas/132343016857977018s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 2ca3db4d-b1a1-11ea-b121-b46bfc3d8f4d, + Request URI: /apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/5ed586da-5550-48ba-97d0-237e9ea1b4f1/partitions/bd5f23b4-6c0b-4984-a3d0-f55d05ddb1a7/replicas/132369289105019831s, + RequestStats: \\r\\nRequestStartTime: 2020-06-18T20:20:39.3984306Z, RequestEndTime: + 2020-06-18T20:20:39.3984306Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-06-18T20:20:39.3984306Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11000/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/5ed586da-5550-48ba-97d0-237e9ea1b4f1/partitions/bd5f23b4-6c0b-4984-a3d0-f55d05ddb1a7/replicas/132369289105019831s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: - Read\\r\\nResponseTime: 2020-05-18T20:33:15.0178565Z, StoreResult: StorePhysicalAddress: - rntbd://10.0.0.21:11000/apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/2fb973d4-cda8-48d2-9fbd-36d95b148053/partitions/963d15a7-e7fe-4a90-a07d-594bb981f4f6/replicas/132343016857977019s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + Read\\r\\nResponseTime: 2020-06-18T20:20:39.3984306Z, StoreResult: StorePhysicalAddress: + rntbd://10.0.0.24:11300/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/5ed586da-5550-48ba-97d0-237e9ea1b4f1/partitions/bd5f23b4-6c0b-4984-a3d0-f55d05ddb1a7/replicas/132369319275179593s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -1638,11 +1884,11 @@ interactions: content-length: - '1706' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc/cassandraKeyspaces/cliwk6ved44kxp5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu/cassandraKeyspaces/clipf6dppg7565o?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:14 GMT + - Thu, 18 Jun 2020 20:20:38 GMT pragma: - no-cache server: @@ -1674,30 +1920,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/da030d33-1ca3-48da-808b-63a43baf5afc?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a65f0895-b68d-498f-b389-5e98fef872d3?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc/cassandraKeyspaces/cliwk6ved44kxp5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu/cassandraKeyspaces/clipf6dppg7565o?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:15 GMT + - Thu, 18 Jun 2020 20:20:40 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002/operationResults/da030d33-1ca3-48da-808b-63a43baf5afc?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002/operationResults/a65f0895-b68d-498f-b389-5e98fef872d3?api-version=2020-04-01 pragma: - no-cache server: @@ -1727,10 +1973,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/da030d33-1ca3-48da-808b-63a43baf5afc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a65f0895-b68d-498f-b389-5e98fef872d3?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1740,11 +1986,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/da030d33-1ca3-48da-808b-63a43baf5afc?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a65f0895-b68d-498f-b389-5e98fef872d3?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:45 GMT + - Thu, 18 Jun 2020 20:21:10 GMT pragma: - no-cache server: @@ -1776,24 +2022,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"7SMJAA==","_etag":"\"00008103-0000-0700-0000-5ec2f10f0000\"","_ts":1589833999}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"64ETAA==","_etag":"\"0000f303-0000-0700-0000-5eebcc9b0000\"","_ts":1592511643}}}' headers: cache-control: - no-store, no-cache content-length: - '478' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc/cassandraKeyspaces/cliwk6ved44kxp5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu/cassandraKeyspaces/clipf6dppg7565o?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:45 GMT + - Thu, 18 Jun 2020 20:21:11 GMT pragma: - no-cache server: @@ -1825,26 +2071,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"7SMJAA==","_etag":"\"00008103-0000-0700-0000-5ec2f10f0000\"","_ts":1589833999}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"64ETAA==","_etag":"\"0000f303-0000-0700-0000-5eebcc9b0000\"","_ts":1592511643}}}' headers: cache-control: - no-store, no-cache content-length: - '478' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc/cassandraKeyspaces/cliwk6ved44kxp5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu/cassandraKeyspaces/clipf6dppg7565o?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:48 GMT + - Thu, 18 Jun 2020 20:21:13 GMT pragma: - no-cache server: @@ -1876,26 +2122,26 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"7SMJAA==","_etag":"\"00008103-0000-0700-0000-5ec2f10f0000\"","_ts":1589833999}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"64ETAA==","_etag":"\"0000f303-0000-0700-0000-5eebcc9b0000\"","_ts":1592511643}}}]}' headers: cache-control: - no-store, no-cache content-length: - '490' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc/cassandraKeyspaces?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu/cassandraKeyspaces?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:48 GMT + - Thu, 18 Jun 2020 20:21:13 GMT pragma: - no-cache server: @@ -1927,26 +2173,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"7SMJAA==","_etag":"\"00008103-0000-0700-0000-5ec2f10f0000\"","_ts":1589833999}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"64ETAA==","_etag":"\"0000f303-0000-0700-0000-5eebcc9b0000\"","_ts":1592511643}}}' headers: cache-control: - no-store, no-cache content-length: - '478' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc/cassandraKeyspaces/cliwk6ved44kxp5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu/cassandraKeyspaces/clipf6dppg7565o?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:50 GMT + - Thu, 18 Jun 2020 20:21:15 GMT pragma: - no-cache server: @@ -1980,30 +2226,30 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/263c8902-d5c9-4751-b48d-157dfbb847b3?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ed71163-cf6e-48d6-89e3-972d1d7a02f2?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc/cassandraKeyspaces/cliwk6ved44kxp5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu/cassandraKeyspaces/clipf6dppg7565o?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:50 GMT + - Thu, 18 Jun 2020 20:21:16 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002/operationResults/263c8902-d5c9-4751-b48d-157dfbb847b3?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000002/operationResults/3ed71163-cf6e-48d6-89e3-972d1d7a02f2?api-version=2020-04-01 pragma: - no-cache server: @@ -2033,10 +2279,10 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/263c8902-d5c9-4751-b48d-157dfbb847b3?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ed71163-cf6e-48d6-89e3-972d1d7a02f2?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2046,11 +2292,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/263c8902-d5c9-4751-b48d-157dfbb847b3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3ed71163-cf6e-48d6-89e3-972d1d7a02f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:21 GMT + - Thu, 18 Jun 2020 20:21:46 GMT pragma: - no-cache server: @@ -2082,12 +2328,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_keyspace000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -2097,11 +2343,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_keyspacewusxuooc4tp3zxx3icectuike7uexqizi7h4uwh/providers/Microsoft.DocumentDB/databaseAccounts/clix2wmbjiaffwc/cassandraKeyspaces?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_keyspacef762mcihul7xjz6qv555lt5rde46h63p2wvhsos/providers/Microsoft.DocumentDB/databaseAccounts/cli5caqxmj5jdlu/cassandraKeyspaces?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:23 GMT + - Thu, 18 Jun 2020 20:21:49 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_resource_throughput.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_resource_throughput.yaml index 302480fd7d1..47e7e6fe07d 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_resource_throughput.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_resource_throughput.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_cassandra_resource_throughput000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001","name":"cli_test_cosmosdb_cassandra_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T00:52:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001","name":"cli_test_cosmosdb_cassandra_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 00:52:15 GMT + - Thu, 18 Jun 2020 20:03:47 GMT expires: - '-1' pragma: @@ -47,7 +47,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}]}}' + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}], + "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +59,41 @@ interactions: Connection: - keep-alive Content-Length: - - '245' + - '266' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1441' + - '1559' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:52:17 GMT + - Thu, 18 Jun 2020 20:03:52 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 pragma: - no-cache server: @@ -106,7 +107,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -126,24 +127,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:52:47 GMT + - Thu, 18 Jun 2020 20:04:23 GMT pragma: - no-cache server: @@ -157,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,24 +176,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:53:18 GMT + - Thu, 18 Jun 2020 20:04:53 GMT pragma: - no-cache server: @@ -206,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,24 +225,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:53:48 GMT + - Thu, 18 Jun 2020 20:05:24 GMT pragma: - no-cache server: @@ -255,7 +256,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,24 +274,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:54:18 GMT + - Thu, 18 Jun 2020 20:05:54 GMT pragma: - no-cache server: @@ -304,7 +305,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,24 +323,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:54:48 GMT + - Thu, 18 Jun 2020 20:06:24 GMT pragma: - no-cache server: @@ -353,7 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,24 +372,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:55:19 GMT + - Thu, 18 Jun 2020 20:06:54 GMT pragma: - no-cache server: @@ -402,7 +403,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,24 +421,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:55:49 GMT + - Thu, 18 Jun 2020 20:07:25 GMT pragma: - no-cache server: @@ -451,7 +452,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,24 +470,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:56:19 GMT + - Thu, 18 Jun 2020 20:07:55 GMT pragma: - no-cache server: @@ -500,7 +501,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,24 +519,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:56:50 GMT + - Thu, 18 Jun 2020 20:08:25 GMT pragma: - no-cache server: @@ -549,7 +550,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,24 +568,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:57:20 GMT + - Thu, 18 Jun 2020 20:08:55 GMT pragma: - no-cache server: @@ -598,7 +599,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,24 +617,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:57:50 GMT + - Thu, 18 Jun 2020 20:09:26 GMT pragma: - no-cache server: @@ -647,7 +648,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,24 +666,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:58:22 GMT + - Thu, 18 Jun 2020 20:09:56 GMT pragma: - no-cache server: @@ -696,7 +697,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,24 +715,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:58:52 GMT + - Thu, 18 Jun 2020 20:10:26 GMT pragma: - no-cache server: @@ -745,7 +746,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,24 +764,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:22 GMT + - Thu, 18 Jun 2020 20:10:56 GMT pragma: - no-cache server: @@ -794,7 +795,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,24 +813,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:53 GMT + - Thu, 18 Jun 2020 20:11:27 GMT pragma: - no-cache server: @@ -843,7 +844,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,24 +862,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:22 GMT + - Thu, 18 Jun 2020 20:11:57 GMT pragma: - no-cache server: @@ -892,7 +893,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -910,24 +911,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:53 GMT + - Thu, 18 Jun 2020 20:12:27 GMT pragma: - no-cache server: @@ -941,7 +942,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -959,24 +960,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:01:23 GMT + - Thu, 18 Jun 2020 20:12:58 GMT pragma: - no-cache server: @@ -990,7 +991,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1008,24 +1009,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0e79ca04-d776-415e-8728-81fe9e8f2bb0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:01:53 GMT + - Thu, 18 Jun 2020 20:13:28 GMT pragma: - no-cache server: @@ -1039,7 +1040,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1057,29 +1058,666 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:13:58 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:14:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:14:59 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:15:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:15:59 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:16:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:17:00 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:17:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:18:00 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:18:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:33 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f55f91c1-39e0-4f8a-91c2-8d2b8f0be6e0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","cassandraEndpoint":"https://cli000002.cassandra.cosmos.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","cassandraEndpoint":"https://cli000002.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1808' + - '1942' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:01:53 GMT + - Thu, 18 Jun 2020 20:20:03 GMT pragma: - no-cache server: @@ -1093,7 +1731,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1111,31 +1749,31 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","cassandraEndpoint":"https://cli000002.cassandra.cosmos.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","cassandraEndpoint":"https://cli000002.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1808' + - '1942' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:01:54 GMT + - Thu, 18 Jun 2020 20:20:03 GMT pragma: - no-cache server: @@ -1149,13 +1787,13 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok - request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"Throughput": - "1000"}}}' + body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"throughput": + 1000}}}' headers: Accept: - application/json @@ -1166,36 +1804,36 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '88' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6dacd294-5883-4cb5-84f3-7acf7f56e311?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4b4eb98-3966-423d-9746-edb127445472?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:01:55 GMT + - Thu, 18 Jun 2020 20:20:04 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/operationResults/6dacd294-5883-4cb5-84f3-7acf7f56e311?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/operationResults/e4b4eb98-3966-423d-9746-edb127445472?api-version=2020-04-01 pragma: - no-cache server: @@ -1205,7 +1843,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1225,24 +1863,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6dacd294-5883-4cb5-84f3-7acf7f56e311?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4b4eb98-3966-423d-9746-edb127445472?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6dacd294-5883-4cb5-84f3-7acf7f56e311?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4b4eb98-3966-423d-9746-edb127445472?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:02:25 GMT + - Thu, 18 Jun 2020 20:20:35 GMT pragma: - no-cache server: @@ -1256,7 +1894,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1274,24 +1912,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"ls4mAA==","_etag":"\"00009802-0000-0700-0000-5df040060000\"","_ts":1576026118}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"VdAJAA==","_etag":"\"0000fe03-0000-0700-0000-5eebcc7a0000\"","_ts":1592511610}}}' headers: cache-control: - no-store, no-cache content-length: - '478' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:02:26 GMT + - Thu, 18 Jun 2020 20:20:36 GMT pragma: - no-cache server: @@ -1305,7 +1943,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1323,26 +1961,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings","name":"K6j+","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings","name":"Q3lU","properties":{"resource":{"throughput":1000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '473' + - '448' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:02:28 GMT + - Thu, 18 Jun 2020 20:20:37 GMT pragma: - no-cache server: @@ -1356,7 +1994,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1378,30 +2016,30 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2baf518b-efdc-466d-b319-b43f1ee1cab2?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cfa77cf7-a97c-4ebc-abb3-2653f9336f03?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:02:30 GMT + - Thu, 18 Jun 2020 20:20:40 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default/operationResults/2baf518b-efdc-466d-b319-b43f1ee1cab2?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default/operationResults/cfa77cf7-a97c-4ebc-abb3-2653f9336f03?api-version=2020-04-01 pragma: - no-cache server: @@ -1411,9 +2049,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1431,24 +2069,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2baf518b-efdc-466d-b319-b43f1ee1cab2?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cfa77cf7-a97c-4ebc-abb3-2653f9336f03?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2baf518b-efdc-466d-b319-b43f1ee1cab2?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cfa77cf7-a97c-4ebc-abb3-2653f9336f03?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:01 GMT + - Thu, 18 Jun 2020 20:21:10 GMT pragma: - no-cache server: @@ -1462,7 +2100,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1480,24 +2118,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings","name":"K6j+","properties":{"resource":{"throughput":2000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings","name":"Q3lU","properties":{"resource":{"throughput":2000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '473' + - '448' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:01 GMT + - Thu, 18 Jun 2020 20:21:12 GMT pragma: - no-cache server: @@ -1511,14 +2149,14 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok - request: body: '{"properties": {"resource": {"id": "cli000004", "schema": {"columns": [{"name": "columnA", "type": "Ascii"}], "partitionKeys": [{"name": "columnA"}]}}, "options": - {"Throughput": "1000"}}}' + {"throughput": 1000}}}' headers: Accept: - application/json @@ -1529,36 +2167,36 @@ interactions: Connection: - keep-alive Content-Length: - - '193' + - '191' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -k -n --throughput --schema User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8a324d83-6a47-4d13-b59c-20a7e7bfeac1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5fdd0209-dfbf-491e-a70d-1f7a2c7be90e?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2/tables/cli64uoqj5r26bj?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx/tables/clihv7x342qaqaw?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:05 GMT + - Thu, 18 Jun 2020 20:21:14 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/operationResults/8a324d83-6a47-4d13-b59c-20a7e7bfeac1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/operationResults/5fdd0209-dfbf-491e-a70d-1f7a2c7be90e?api-version=2020-04-01 pragma: - no-cache server: @@ -1568,9 +2206,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 202 message: Accepted @@ -1588,24 +2226,24 @@ interactions: ParameterSetName: - -g -a -k -n --throughput --schema User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8a324d83-6a47-4d13-b59c-20a7e7bfeac1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5fdd0209-dfbf-491e-a70d-1f7a2c7be90e?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8a324d83-6a47-4d13-b59c-20a7e7bfeac1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5fdd0209-dfbf-491e-a70d-1f7a2c7be90e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:35 GMT + - Thu, 18 Jun 2020 20:21:44 GMT pragma: - no-cache server: @@ -1619,7 +2257,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1637,24 +2275,24 @@ interactions: ParameterSetName: - -g -a -k -n --throughput --schema User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"ls4mAK+0Vxk=","_etag":"\"00009e02-0000-0700-0000-5df0404c0000\"","_ts":1576026188,"defaultTtl":-1,"schema":{"columns":[{"name":"columnA","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"VdAJALeb2fo=","_etag":"\"00000404-0000-0700-0000-5eebccc00000\"","_ts":1592511680,"defaultTtl":-1,"schema":{"columns":[{"name":"columnA","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' headers: cache-control: - no-store, no-cache content-length: - '622' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2/tables/cli64uoqj5r26bj?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx/tables/clihv7x342qaqaw?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:37 GMT + - Thu, 18 Jun 2020 20:21:45 GMT pragma: - no-cache server: @@ -1668,7 +2306,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1686,26 +2324,26 @@ interactions: ParameterSetName: - -g -a -k -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings","name":"dtAG","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings","name":"riFQ","properties":{"resource":{"throughput":1000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '503' + - '478' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2/tables/cli64uoqj5r26bj/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx/tables/clihv7x342qaqaw/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:39 GMT + - Thu, 18 Jun 2020 20:21:47 GMT pragma: - no-cache server: @@ -1719,7 +2357,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1741,30 +2379,30 @@ interactions: ParameterSetName: - -g -a -k -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5589f45-f80c-4c2c-9469-c1fea387f843?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6215e5be-2bb8-4ce3-9b9b-0ab342eb385e?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2/tables/cli64uoqj5r26bj/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx/tables/clihv7x342qaqaw/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:40 GMT + - Thu, 18 Jun 2020 20:21:48 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default/operationResults/a5589f45-f80c-4c2c-9469-c1fea387f843?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default/operationResults/6215e5be-2bb8-4ce3-9b9b-0ab342eb385e?api-version=2020-04-01 pragma: - no-cache server: @@ -1774,9 +2412,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1794,24 +2432,24 @@ interactions: ParameterSetName: - -g -a -k -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5589f45-f80c-4c2c-9469-c1fea387f843?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6215e5be-2bb8-4ce3-9b9b-0ab342eb385e?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5589f45-f80c-4c2c-9469-c1fea387f843?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6215e5be-2bb8-4ce3-9b9b-0ab342eb385e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:04:10 GMT + - Thu, 18 Jun 2020 20:22:19 GMT pragma: - no-cache server: @@ -1825,7 +2463,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1843,24 +2481,24 @@ interactions: ParameterSetName: - -g -a -k -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings","name":"dtAG","properties":{"resource":{"throughput":2000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/cassandraKeyspaces/cli000003/tables/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings","name":"riFQ","properties":{"resource":{"throughput":2000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '503' + - '478' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput6v6k3yk26zoaeps5ya67nlh3akok/providers/Microsoft.DocumentDB/databaseAccounts/clitdjf4er3wysv/cassandraKeyspaces/cli6cjfd35i42c2/tables/cli64uoqj5r26bj/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_resource_throughput22zkrugrfbxlqgbfxdvax6ja7jck/providers/Microsoft.DocumentDB/databaseAccounts/cliqk2uabgifqzu/cassandraKeyspaces/cligfa4zwfsdjwx/tables/clihv7x342qaqaw/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:04:12 GMT + - Thu, 18 Jun 2020 20:22:19 GMT pragma: - no-cache server: @@ -1874,7 +2512,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_table.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_table.yaml index c0f376eb2e8..075661d5533 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_table.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_cassandra_table.yaml @@ -11,17 +11,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_cassandra_table000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001","name":"cli_test_cosmosdb_cassandra_table000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-18T20:18:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001","name":"cli_test_cosmosdb_cassandra_table000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 20:18:59 GMT + - Thu, 18 Jun 2020 20:03:47 GMT expires: - '-1' pragma: @@ -47,7 +47,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}]}}' + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableCassandra"}], + "apiProperties": {}, "enableAnalyticalStorage": true}}' headers: Accept: - application/json @@ -58,41 +59,41 @@ interactions: Connection: - keep-alive Content-Length: - - '245' + - '299' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1512' + - '1558' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:04 GMT + - Thu, 18 Jun 2020 20:03:53 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 pragma: - no-cache server: @@ -108,7 +109,56 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:04:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -124,12 +174,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +189,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:35 GMT + - Thu, 18 Jun 2020 20:04:53 GMT pragma: - no-cache server: @@ -173,12 +223,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +238,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:05 GMT + - Thu, 18 Jun 2020 20:05:24 GMT pragma: - no-cache server: @@ -222,12 +272,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +287,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:35 GMT + - Thu, 18 Jun 2020 20:05:54 GMT pragma: - no-cache server: @@ -271,12 +321,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +336,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:05 GMT + - Thu, 18 Jun 2020 20:06:24 GMT pragma: - no-cache server: @@ -320,12 +370,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +385,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:35 GMT + - Thu, 18 Jun 2020 20:06:54 GMT pragma: - no-cache server: @@ -369,12 +419,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +434,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:06 GMT + - Thu, 18 Jun 2020 20:07:25 GMT pragma: - no-cache server: @@ -418,12 +468,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +483,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:36 GMT + - Thu, 18 Jun 2020 20:07:55 GMT pragma: - no-cache server: @@ -467,12 +517,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +532,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:07 GMT + - Thu, 18 Jun 2020 20:08:25 GMT pragma: - no-cache server: @@ -516,12 +566,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +581,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:37 GMT + - Thu, 18 Jun 2020 20:08:55 GMT pragma: - no-cache server: @@ -565,12 +615,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +630,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:07 GMT + - Thu, 18 Jun 2020 20:09:26 GMT pragma: - no-cache server: @@ -614,12 +664,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +679,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:37 GMT + - Thu, 18 Jun 2020 20:09:57 GMT pragma: - no-cache server: @@ -663,12 +713,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +728,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:08 GMT + - Thu, 18 Jun 2020 20:10:27 GMT pragma: - no-cache server: @@ -712,12 +762,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +777,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:38 GMT + - Thu, 18 Jun 2020 20:10:57 GMT pragma: - no-cache server: @@ -761,12 +811,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +826,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:08 GMT + - Thu, 18 Jun 2020 20:11:27 GMT pragma: - no-cache server: @@ -810,12 +860,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +875,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:39 GMT + - Thu, 18 Jun 2020 20:11:58 GMT pragma: - no-cache server: @@ -859,12 +909,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +924,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:08 GMT + - Thu, 18 Jun 2020 20:12:28 GMT pragma: - no-cache server: @@ -908,12 +958,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +973,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:40 GMT + - Thu, 18 Jun 2020 20:12:58 GMT pragma: - no-cache server: @@ -957,12 +1007,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +1022,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:10 GMT + - Thu, 18 Jun 2020 20:13:29 GMT pragma: - no-cache server: @@ -1006,12 +1056,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1071,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:40 GMT + - Thu, 18 Jun 2020 20:13:59 GMT pragma: - no-cache server: @@ -1055,12 +1105,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1070,11 +1120,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:10 GMT + - Thu, 18 Jun 2020 20:14:29 GMT pragma: - no-cache server: @@ -1104,12 +1154,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1119,11 +1169,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:40 GMT + - Thu, 18 Jun 2020 20:14:59 GMT pragma: - no-cache server: @@ -1153,12 +1203,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1168,11 +1218,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:11 GMT + - Thu, 18 Jun 2020 20:15:29 GMT pragma: - no-cache server: @@ -1202,12 +1252,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1217,11 +1267,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:41 GMT + - Thu, 18 Jun 2020 20:16:00 GMT pragma: - no-cache server: @@ -1251,12 +1301,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1266,11 +1316,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:12 GMT + - Thu, 18 Jun 2020 20:16:30 GMT pragma: - no-cache server: @@ -1300,12 +1350,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1315,11 +1365,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:41 GMT + - Thu, 18 Jun 2020 20:17:01 GMT pragma: - no-cache server: @@ -1349,12 +1399,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1364,11 +1414,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:11 GMT + - Thu, 18 Jun 2020 20:17:30 GMT pragma: - no-cache server: @@ -1398,12 +1448,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1413,11 +1463,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:42 GMT + - Thu, 18 Jun 2020 20:18:01 GMT pragma: - no-cache server: @@ -1447,12 +1497,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1462,11 +1512,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:13 GMT + - Thu, 18 Jun 2020 20:18:32 GMT pragma: - no-cache server: @@ -1496,12 +1546,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1511,11 +1561,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:43 GMT + - Thu, 18 Jun 2020 20:19:03 GMT pragma: - no-cache server: @@ -1545,12 +1595,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1560,11 +1610,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:13 GMT + - Thu, 18 Jun 2020 20:19:33 GMT pragma: - no-cache server: @@ -1594,12 +1644,208 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:21:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:21:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1609,11 +1855,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf23608f-e0f3-4b64-a9d8-b16a2d195eb9?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c746113d-ce00-4338-87d3-f66ccb057857?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:43 GMT + - Thu, 18 Jun 2020 20:22:06 GMT pragma: - no-cache server: @@ -1643,31 +1889,31 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","cassandraEndpoint":"https://cli000003.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","cassandraEndpoint":"https://cli000003.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1895' + - '1941' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:43 GMT + - Thu, 18 Jun 2020 20:22:06 GMT pragma: - no-cache server: @@ -1697,33 +1943,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --capabilities + - -n -g --capabilities --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","cassandraEndpoint":"https://cli000003.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","cassandraEndpoint":"https://cli000003.cassandra.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Cassandra","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableCassandra"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1895' + - '1941' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:43 GMT + - Thu, 18 Jun 2020 20:22:06 GMT pragma: - no-cache server: @@ -1759,30 +2005,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bc7b8d59-48cf-48ba-8c76-1c1a5729b9cd?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ee1a1625-5dbb-44f1-bbd8-255494334339?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:44 GMT + - Thu, 18 Jun 2020 20:22:07 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/operationResults/bc7b8d59-48cf-48ba-8c76-1c1a5729b9cd?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/operationResults/ee1a1625-5dbb-44f1-bbd8-255494334339?api-version=2020-04-01 pragma: - no-cache server: @@ -1794,7 +2040,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -1812,10 +2058,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bc7b8d59-48cf-48ba-8c76-1c1a5729b9cd?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ee1a1625-5dbb-44f1-bbd8-255494334339?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1825,11 +2071,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bc7b8d59-48cf-48ba-8c76-1c1a5729b9cd?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ee1a1625-5dbb-44f1-bbd8-255494334339?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:15 GMT + - Thu, 18 Jun 2020 20:22:38 GMT pragma: - no-cache server: @@ -1861,24 +2107,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"hrFaAA==","_etag":"\"0000a305-0000-0700-0000-5ec2f1690000\"","_ts":1589834089}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"Sw1TAA==","_etag":"\"0000b005-0000-0700-0000-5eebccf40000\"","_ts":1592511732}}}' headers: cache-control: - no-store, no-cache content-length: - '478' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:15 GMT + - Thu, 18 Jun 2020 20:22:38 GMT pragma: - no-cache server: @@ -1910,27 +2156,27 @@ interactions: ParameterSetName: - -g -a -k -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-04-01 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 15a14429-9947-11ea-a9fb-a08cfdd714a6, - Request URI: /apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/fac75849-5a1a-4930-95b1-04768365a69e/partitions/d23f8f4e-4708-4375-b812-b7c80126e527/replicas/132343016857977018s, - RequestStats: \\r\\nRequestStartTime: 2020-05-18T20:35:18.2645555Z, RequestEndTime: - 2020-05-18T20:35:18.2645555Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-05-18T20:35:18.2645555Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/fac75849-5a1a-4930-95b1-04768365a69e/partitions/d23f8f4e-4708-4375-b812-b7c80126e527/replicas/132343016857977018s, - LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, + {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 74b5213b-b1a1-11ea-96dc-b46bfc3d8f4d, + Request URI: /apps/a838b6b5-36e0-43c6-8479-9b6c837000ca/services/68c9d14b-4919-4330-921b-2372b0051eb4/partitions/e1cb3c13-241a-4b58-8d68-350f966d9f59/replicas/132369537056751397s, + RequestStats: \\r\\nRequestStartTime: 2020-06-18T20:22:40.7886346Z, RequestEndTime: + 2020-06-18T20:22:40.7986157Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-06-18T20:22:40.7986157Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/a838b6b5-36e0-43c6-8479-9b6c837000ca/services/68c9d14b-4919-4330-921b-2372b0051eb4/partitions/e1cb3c13-241a-4b58-8d68-350f966d9f59/replicas/132369537056751397s, + LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, - OperationType: Read\\r\\nResponseTime: 2020-05-18T20:35:18.2645555Z, StoreResult: - StorePhysicalAddress: rntbd://10.0.0.14:11300/apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/fac75849-5a1a-4930-95b1-04768365a69e/partitions/d23f8f4e-4708-4375-b812-b7c80126e527/replicas/132342969198636197s, - LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, + OperationType: Read\\r\\nResponseTime: 2020-06-18T20:22:40.7986157Z, StoreResult: + StorePhysicalAddress: rntbd://10.0.0.21:11000/apps/a838b6b5-36e0-43c6-8479-9b6c837000ca/services/68c9d14b-4919-4330-921b-2372b0051eb4/partitions/e1cb3c13-241a-4b58-8d68-350f966d9f59/replicas/132369620765753749s, + LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/cli000004/colls/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -1940,11 +2186,11 @@ interactions: content-length: - '1732' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables/clivw6nk6xlttai?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables/cliahcpv7jbjy5i?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:18 GMT + - Thu, 18 Jun 2020 20:22:40 GMT pragma: - no-cache server: @@ -1960,8 +2206,8 @@ interactions: message: NotFound - request: body: '{"properties": {"resource": {"id": "cli000002", "schema": {"columns": [{"name": - "columnA", "type": "Ascii"}], "partitionKeys": [{"name": "columnA"}]}}, "options": - {}}}' + "columnA", "type": "Ascii"}], "partitionKeys": [{"name": "columnA"}]}, "analyticalStorageTtl": + 3000}, "options": {}}}' headers: Accept: - application/json @@ -1972,36 +2218,36 @@ interactions: Connection: - keep-alive Content-Length: - - '173' + - '203' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -a -k -n --schema + - -g -a -k -n --schema --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0b6f51a8-326a-4708-b28c-83717546d19f?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fe89a462-6664-4b55-88e9-9fad5b40e77a?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables/clivw6nk6xlttai?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables/cliahcpv7jbjy5i?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:19 GMT + - Thu, 18 Jun 2020 20:22:42 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002/operationResults/0b6f51a8-326a-4708-b28c-83717546d19f?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002/operationResults/fe89a462-6664-4b55-88e9-9fad5b40e77a?api-version=2020-04-01 pragma: - no-cache server: @@ -2013,7 +2259,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -2029,12 +2275,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -k -n --schema + - -g -a -k -n --schema --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0b6f51a8-326a-4708-b28c-83717546d19f?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fe89a462-6664-4b55-88e9-9fad5b40e77a?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2044,11 +2290,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0b6f51a8-326a-4708-b28c-83717546d19f?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fe89a462-6664-4b55-88e9-9fad5b40e77a?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:49 GMT + - Thu, 18 Jun 2020 20:23:12 GMT pragma: - no-cache server: @@ -2078,26 +2324,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -k -n --schema + - -g -a -k -n --schema --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"hrFaAIP2s6s=","_etag":"\"0000a905-0000-0700-0000-5ec2f18b0000\"","_ts":1589834123,"defaultTtl":-1,"schema":{"columns":[{"name":"columnA","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Sw1TAKHxGiA=","_etag":"\"0000b305-0000-0700-0000-5eebcd170000\"","_ts":1592511767,"defaultTtl":-1,"analyticalStorageTtl":3000,"schema":{"columns":[{"name":"columnA","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' headers: cache-control: - no-store, no-cache content-length: - - '622' + - '650' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables/clivw6nk6xlttai?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables/cliahcpv7jbjy5i?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:49 GMT + - Thu, 18 Jun 2020 20:23:13 GMT pragma: - no-cache server: @@ -2127,28 +2373,28 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -k -n --schema + - -g -a -k -n --schema --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"hrFaAIP2s6s=","_etag":"\"0000a905-0000-0700-0000-5ec2f18b0000\"","_ts":1589834123,"defaultTtl":-1,"schema":{"columns":[{"name":"columnA","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Sw1TAKHxGiA=","_etag":"\"0000b305-0000-0700-0000-5eebcd170000\"","_ts":1592511767,"defaultTtl":-1,"analyticalStorageTtl":3000,"schema":{"columns":[{"name":"columnA","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' headers: cache-control: - no-store, no-cache content-length: - - '622' + - '650' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables/clivw6nk6xlttai?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables/cliahcpv7jbjy5i?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:52 GMT + - Thu, 18 Jun 2020 20:23:16 GMT pragma: - no-cache server: @@ -2169,7 +2415,8 @@ interactions: - request: body: '{"properties": {"resource": {"id": "cli000002", "defaultTtl": -1, "schema": {"columns": [{"name": "columnA", "type": "Ascii"}, {"name": "columnB", "type": - "Ascii"}], "partitionKeys": [{"name": "columnA"}]}}, "options": {}}}' + "Ascii"}], "partitionKeys": [{"name": "columnA"}]}, "analyticalStorageTtl": + 6000}, "options": {}}}' headers: Accept: - application/json @@ -2180,36 +2427,36 @@ interactions: Connection: - keep-alive Content-Length: - - '229' + - '259' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -a -k -n --schema + - -g -a -k -n --schema --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9735dc78-8627-4193-8a39-f8b16c9ba097?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eccc219a-875c-4305-a964-b50ea2393645?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables/clivw6nk6xlttai?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables/cliahcpv7jbjy5i?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:52 GMT + - Thu, 18 Jun 2020 20:23:17 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002/operationResults/9735dc78-8627-4193-8a39-f8b16c9ba097?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002/operationResults/eccc219a-875c-4305-a964-b50ea2393645?api-version=2020-04-01 pragma: - no-cache server: @@ -2221,7 +2468,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -2237,12 +2484,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -k -n --schema + - -g -a -k -n --schema --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9735dc78-8627-4193-8a39-f8b16c9ba097?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eccc219a-875c-4305-a964-b50ea2393645?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2252,11 +2499,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9735dc78-8627-4193-8a39-f8b16c9ba097?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eccc219a-875c-4305-a964-b50ea2393645?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:23 GMT + - Thu, 18 Jun 2020 20:23:48 GMT pragma: - no-cache server: @@ -2286,26 +2533,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -k -n --schema + - -g -a -k -n --schema --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"hrFaAIP2s6s=","_etag":"\"0000ad05-0000-0700-0000-5ec2f1ad0000\"","_ts":1589834157,"defaultTtl":-1,"schema":{"columns":[{"name":"columnA","type":"ascii"},{"name":"columnB","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Sw1TAKHxGiA=","_etag":"\"0000b905-0000-0700-0000-5eebcd390000\"","_ts":1592511801,"defaultTtl":-1,"analyticalStorageTtl":6000,"schema":{"columns":[{"name":"columnA","type":"ascii"},{"name":"columnB","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' headers: cache-control: - no-store, no-cache content-length: - - '656' + - '684' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables/clivw6nk6xlttai?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables/cliahcpv7jbjy5i?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:24 GMT + - Thu, 18 Jun 2020 20:23:48 GMT pragma: - no-cache server: @@ -2337,26 +2584,26 @@ interactions: ParameterSetName: - -g -a -k -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"hrFaAIP2s6s=","_etag":"\"0000ad05-0000-0700-0000-5ec2f1ad0000\"","_ts":1589834157,"defaultTtl":-1,"schema":{"columns":[{"name":"columnA","type":"ascii"},{"name":"columnB","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Sw1TAKHxGiA=","_etag":"\"0000b905-0000-0700-0000-5eebcd390000\"","_ts":1592511801,"defaultTtl":-1,"analyticalStorageTtl":6000,"schema":{"columns":[{"name":"columnA","type":"ascii"},{"name":"columnB","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' headers: cache-control: - no-store, no-cache content-length: - - '656' + - '684' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables/clivw6nk6xlttai?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables/cliahcpv7jbjy5i?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:26 GMT + - Thu, 18 Jun 2020 20:23:50 GMT pragma: - no-cache server: @@ -2388,26 +2635,26 @@ interactions: ParameterSetName: - -g -a -k User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"hrFaAIP2s6s=","_etag":"\"0000ad05-0000-0700-0000-5ec2f1ad0000\"","_ts":1589834157,"defaultTtl":-1,"schema":{"columns":[{"name":"columnA","type":"ascii"},{"name":"columnB","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Sw1TAKHxGiA=","_etag":"\"0000b905-0000-0700-0000-5eebcd390000\"","_ts":1592511801,"defaultTtl":-1,"analyticalStorageTtl":6000,"schema":{"columns":[{"name":"columnA","type":"ascii"},{"name":"columnB","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}]}' headers: cache-control: - no-store, no-cache content-length: - - '668' + - '696' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:27 GMT + - Thu, 18 Jun 2020 20:23:51 GMT pragma: - no-cache server: @@ -2439,26 +2686,26 @@ interactions: ParameterSetName: - -g -a -k -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"hrFaAIP2s6s=","_etag":"\"0000ad05-0000-0700-0000-5ec2f1ad0000\"","_ts":1589834157,"defaultTtl":-1,"schema":{"columns":[{"name":"columnA","type":"ascii"},{"name":"columnB","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Sw1TAKHxGiA=","_etag":"\"0000b905-0000-0700-0000-5eebcd390000\"","_ts":1592511801,"defaultTtl":-1,"analyticalStorageTtl":6000,"schema":{"columns":[{"name":"columnA","type":"ascii"},{"name":"columnB","type":"ascii"}],"partitionKeys":[{"name":"columnA"}]}}}}' headers: cache-control: - no-store, no-cache content-length: - - '656' + - '684' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables/clivw6nk6xlttai?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables/cliahcpv7jbjy5i?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:28 GMT + - Thu, 18 Jun 2020 20:23:53 GMT pragma: - no-cache server: @@ -2492,30 +2739,30 @@ interactions: ParameterSetName: - -g -a -k -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/302d4ef5-0d76-4dcf-a5b4-c629ac9b7fb5?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6b97b532-f1a6-40cf-8521-3aafc3b8111c?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables/clivw6nk6xlttai?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables/cliahcpv7jbjy5i?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:30 GMT + - Thu, 18 Jun 2020 20:23:55 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002/operationResults/302d4ef5-0d76-4dcf-a5b4-c629ac9b7fb5?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables/cli000002/operationResults/6b97b532-f1a6-40cf-8521-3aafc3b8111c?api-version=2020-04-01 pragma: - no-cache server: @@ -2545,10 +2792,10 @@ interactions: ParameterSetName: - -g -a -k -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/302d4ef5-0d76-4dcf-a5b4-c629ac9b7fb5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6b97b532-f1a6-40cf-8521-3aafc3b8111c?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2558,11 +2805,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/302d4ef5-0d76-4dcf-a5b4-c629ac9b7fb5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6b97b532-f1a6-40cf-8521-3aafc3b8111c?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:00 GMT + - Thu, 18 Jun 2020 20:24:26 GMT pragma: - no-cache server: @@ -2594,12 +2841,12 @@ interactions: ParameterSetName: - -g -a -k User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_cassandra_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/cassandraKeyspaces/cli000004/tables?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -2609,11 +2856,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_cassandra_tabletmsk3xp2jah43qec5pdhyj4hzujutqttyrcxiyiqd6/providers/Microsoft.DocumentDB/databaseAccounts/cliv5axugfqegm3/cassandraKeyspaces/cliobfw5hqpwlhx/tables?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_cassandra_tablerba5c24gsin2cvaxw2uzpsfyv3yyw5lqcl4lwm4f52/providers/Microsoft.DocumentDB/databaseAccounts/clilodlxey6hzzn/cassandraKeyspaces/clisjojopaiya4z/tables?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:02 GMT + - Thu, 18 Jun 2020 20:24:28 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_collection.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_collection.yaml index 965b0bd7d21..36912ac5a81 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_collection.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_collection.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_collection000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001","name":"cli_test_cosmosdb_collection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T00:52:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001","name":"cli_test_cosmosdb_collection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 00:52:15 GMT + - Thu, 18 Jun 2020 20:03:47 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1409' + - '1527' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:52:17 GMT + - Thu, 18 Jun 2020 20:03:53 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,1038 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:04:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:04:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:06:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:06:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:07:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:07:56 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:08:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:08:58 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:09:28 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:09:58 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:10:28 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:10:59 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:11:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:11:59 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:12:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:13:00 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:13:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:14:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:14:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,24 +1155,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:52:47 GMT + - Thu, 18 Jun 2020 20:15:02 GMT pragma: - no-cache server: @@ -157,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,24 +1204,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:53:18 GMT + - Thu, 18 Jun 2020 20:15:32 GMT pragma: - no-cache server: @@ -206,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,24 +1253,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:53:48 GMT + - Thu, 18 Jun 2020 20:16:02 GMT pragma: - no-cache server: @@ -255,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,24 +1302,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:54:18 GMT + - Thu, 18 Jun 2020 20:16:32 GMT pragma: - no-cache server: @@ -304,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,24 +1351,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:54:49 GMT + - Thu, 18 Jun 2020 20:17:03 GMT pragma: - no-cache server: @@ -353,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,24 +1400,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:55:19 GMT + - Thu, 18 Jun 2020 20:17:33 GMT pragma: - no-cache server: @@ -402,7 +1431,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,24 +1449,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:55:49 GMT + - Thu, 18 Jun 2020 20:18:03 GMT pragma: - no-cache server: @@ -451,7 +1480,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,24 +1498,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:56:21 GMT + - Thu, 18 Jun 2020 20:18:33 GMT pragma: - no-cache server: @@ -500,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,24 +1547,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:56:51 GMT + - Thu, 18 Jun 2020 20:19:05 GMT pragma: - no-cache server: @@ -549,7 +1578,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,24 +1596,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:57:21 GMT + - Thu, 18 Jun 2020 20:19:36 GMT pragma: - no-cache server: @@ -598,7 +1627,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,24 +1645,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:57:52 GMT + - Thu, 18 Jun 2020 20:20:06 GMT pragma: - no-cache server: @@ -647,7 +1676,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,24 +1694,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:58:22 GMT + - Thu, 18 Jun 2020 20:20:36 GMT pragma: - no-cache server: @@ -696,7 +1725,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,24 +1743,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:58:52 GMT + - Thu, 18 Jun 2020 20:21:07 GMT pragma: - no-cache server: @@ -745,7 +1774,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,24 +1792,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:24 GMT + - Thu, 18 Jun 2020 20:21:37 GMT pragma: - no-cache server: @@ -794,7 +1823,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,24 +1841,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:54 GMT + - Thu, 18 Jun 2020 20:22:07 GMT pragma: - no-cache server: @@ -843,7 +1872,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,24 +1890,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec71cacb-47a9-400d-9764-6a78872e7fbe?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e1c8f232-4d4f-4973-85ba-b568e3662be0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:24 GMT + - Thu, 18 Jun 2020 20:22:38 GMT pragma: - no-cache server: @@ -892,7 +1921,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -910,29 +1939,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:24 GMT + - Thu, 18 Jun 2020 20:22:38 GMT pragma: - no-cache server: @@ -946,7 +1975,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -964,31 +1993,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:25 GMT + - Thu, 18 Jun 2020 20:22:38 GMT pragma: - no-cache server: @@ -1002,7 +2031,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1022,15 +2051,15 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -1039,7 +2068,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:25 GMT + - Thu, 18 Jun 2020 20:22:40 GMT pragma: - no-cache server: @@ -1053,7 +2082,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1073,31 +2102,31 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:26 GMT + - Thu, 18 Jun 2020 20:22:40 GMT pragma: - no-cache server: @@ -1111,7 +2140,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1129,11 +2158,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:27 GMT + - Thu, 18 Jun 2020 20:22:41 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1146,16 +2175,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:26 GMT + - Thu, 18 Jun 2020 20:22:41 GMT pragma: - no-cache server: @@ -1171,7 +2200,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1195,11 +2224,11 @@ interactions: Content-Type: - application/json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:27 GMT + - Thu, 18 Jun 2020 20:22:42 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1208,18 +2237,18 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs response: body: - string: '{"id":"cli000004","_rid":"8D89AA==","_self":"dbs\/8D89AA==\/","_etag":"\"00005f02-0000-0700-0000-5df03fab0000\"","_colls":"colls\/","_users":"users\/","_ts":1576026027}' + string: '{"id":"cli000004","_rid":"jZVvAA==","_self":"dbs\/jZVvAA==\/","_etag":"\"00003c07-0000-0700-0000-5eebcd120000\"","_colls":"colls\/","_users":"users\/","_ts":1592511762}' headers: cache-control: - no-store, no-cache content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:27 GMT + - Thu, 18 Jun 2020 20:22:42 GMT etag: - - '"00005f02-0000-0700-0000-5df03fab0000"' + - '"00003c07-0000-0700-0000-5eebcd120000"' lsn: - - '4' + - '6' pragma: - no-cache server: @@ -1229,25 +2258,25 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 91fadcdf-021b-4f89-b3f7-c2effa258d03 + - 3e0dcfd4-f6d0-4eb7-a1fa-b0b9e6aafc26 x-ms-cosmos-llsn: - - '4' + - '6' x-ms-cosmos-quorum-acked-llsn: - - '3' + - '5' x-ms-current-replica-set-size: - '4' x-ms-current-write-quorum: - '3' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '3' + - '5' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:53:57.175 GMT + - Thu, 18 Jun 2020 20:14:26.919 GMT x-ms-number-of-read-regions: - '0' x-ms-quorum-acked-lsn: - - '3' + - '5' x-ms-request-charge: - '4.95' x-ms-resource-quota: @@ -1257,11 +2286,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#4 + - 0:-1#6 x-ms-transport-request-id: - - '8223' + - '56986' x-ms-xp-role: - '1' status: @@ -1283,15 +2312,15 @@ interactions: ParameterSetName: - -g -n -d -c --default-ttl User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -1300,7 +2329,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:27 GMT + - Thu, 18 Jun 2020 20:22:42 GMT pragma: - no-cache server: @@ -1314,7 +2343,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1334,31 +2363,31 @@ interactions: ParameterSetName: - -g -n -d -c --default-ttl User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:28 GMT + - Thu, 18 Jun 2020 20:22:43 GMT pragma: - no-cache server: @@ -1372,7 +2401,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1390,11 +2419,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:29 GMT + - Thu, 18 Jun 2020 20:22:44 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1407,16 +2436,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:28 GMT + - Thu, 18 Jun 2020 20:22:44 GMT pragma: - no-cache server: @@ -1432,7 +2461,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1456,11 +2485,11 @@ interactions: Content-Type: - application/json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:29 GMT + - Thu, 18 Jun 2020 20:22:44 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1469,7 +2498,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/ response: body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026029,"_self":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","_etag":"\"00006102-0000-0700-0000-5df03fad0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' + string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511765,"_self":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","_etag":"\"00003e07-0000-0700-0000-5eebcd150000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' headers: cache-control: - no-store, no-cache @@ -1480,9 +2509,9 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:29 GMT + - Thu, 18 Jun 2020 20:22:44 GMT etag: - - '"00006102-0000-0700-0000-5df03fad0000"' + - '"00003e07-0000-0700-0000-5eebcd150000"' lsn: - '1' pragma: @@ -1494,9 +2523,9 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 587c7693-ca5b-47f7-99b2-7b9786f77df2 + - cb2075d3-e1a1-4530-9e0e-f683f6fa1121 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-cosmos-item-llsn: - '1' x-ms-cosmos-llsn: @@ -1510,13 +2539,13 @@ interactions: x-ms-documentdb-collection-index-transformation-progress: - '100' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - '1' x-ms-item-lsn: - '1' x-ms-last-state-change-utc: - - Sat, 07 Dec 2019 06:31:30.894 GMT + - Thu, 18 Jun 2020 20:11:48.322 GMT x-ms-number-of-read-regions: - '0' x-ms-quorum-acked-lsn: @@ -1530,7 +2559,7 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - 0:-1#1 x-ms-transport-request-id: @@ -1554,11 +2583,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:30 GMT + - Thu, 18 Jun 2020 20:22:45 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1567,18 +2596,18 @@ interactions: uri: https://cli000003-westus.documents.azure.com/offers response: body: - string: '{"_rid":"","Offers":[{"resource":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","offerType":"Invalid","offerResourceId":"8D89AJn9ly4=","offerVersion":"V2","content":{"offerThroughput":400,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"EM1W","_rid":"EM1W","_self":"offers\/EM1W\/","_etag":"\"00006202-0000-0700-0000-5df03fad0000\"","_ts":1576026029}],"_count":1}' + string: '{"_rid":"","Offers":[{"resource":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","offerType":"Invalid","offerResourceId":"jZVvANXUXCw=","offerVersion":"V2","content":{"offerThroughput":400,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"y8Kp","_rid":"y8Kp","_self":"offers\/y8Kp\/","_etag":"\"00003f07-0000-0700-0000-5eebcd150000\"","_ts":1592511765}],"_count":1}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/offers + - https://clibctoeoykxbsf-westus.documents.azure.com/offers content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:29 GMT + - Thu, 18 Jun 2020 20:22:44 GMT lsn: - - '5' + - '7' pragma: - no-cache server: @@ -1588,17 +2617,17 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 91c27f57-41fd-4060-9a0f-9abf723e675c + - f9c8fdd1-1ae8-4ba1-99dd-b21114ff632d x-ms-cosmos-llsn: - - '5' + - '7' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '5' + - '7' x-ms-item-count: - '1' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 22:31:33.596 GMT + - Thu, 18 Jun 2020 19:18:15.024 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -1606,11 +2635,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#5 + - 0:-1#7 x-ms-transport-request-id: - - '5132' + - '58845' x-ms-xp-role: - '1' status: @@ -1632,15 +2661,15 @@ interactions: ParameterSetName: - -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -1649,7 +2678,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:30 GMT + - Thu, 18 Jun 2020 20:22:45 GMT pragma: - no-cache server: @@ -1663,7 +2692,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1683,31 +2712,31 @@ interactions: ParameterSetName: - -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:31 GMT + - Thu, 18 Jun 2020 20:22:46 GMT pragma: - no-cache server: @@ -1721,7 +2750,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1739,11 +2768,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:31 GMT + - Thu, 18 Jun 2020 20:22:47 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1756,16 +2785,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:31 GMT + - Thu, 18 Jun 2020 20:22:47 GMT pragma: - no-cache server: @@ -1781,7 +2810,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1803,11 +2832,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:32 GMT + - Thu, 18 Jun 2020 20:22:47 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1816,7 +2845,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ response: body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026029,"_self":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","_etag":"\"00006102-0000-0700-0000-5df03fad0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' + string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511765,"_self":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","_etag":"\"00003e07-0000-0700-0000-5eebcd150000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' headers: cache-control: - no-store, no-cache @@ -1825,13 +2854,13 @@ interactions: collection-service-index: - '0' content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/dbs/clil3ehq4btqxde/colls/clijsu7hpf62ywb/ + - https://clibctoeoykxbsf-westus.documents.azure.com/dbs/cli7tl6bwxcvqpn/colls/cliycu7j655tlro/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:31 GMT + - Thu, 18 Jun 2020 20:22:47 GMT etag: - - '"00006102-0000-0700-0000-5df03fad0000"' + - '"00003e07-0000-0700-0000-5eebcd150000"' lsn: - '1' pragma: @@ -1843,11 +2872,11 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 35a7f52a-0449-4b0d-8e2a-9251bda180b0 + - 8dac9c2b-de78-45d7-aa43-97cf8f429b9e x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-content-path: - - 8D89AA== + - jZVvAA== x-ms-cosmos-item-llsn: - '1' x-ms-cosmos-llsn: @@ -1855,13 +2884,13 @@ interactions: x-ms-documentdb-collection-index-transformation-progress: - '100' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - '1' x-ms-item-lsn: - '1' x-ms-last-state-change-utc: - - Sat, 07 Dec 2019 06:31:30.284 GMT + - Thu, 18 Jun 2020 20:11:57.038 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -1873,13 +2902,13 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - 0:-1#1 x-ms-transport-request-id: - '1' x-ms-xp-role: - - '1' + - '2' status: code: 200 message: Ok @@ -1897,11 +2926,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:32 GMT + - Thu, 18 Jun 2020 20:22:48 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1910,18 +2939,18 @@ interactions: uri: https://cli000003-westus.documents.azure.com/offers response: body: - string: '{"_rid":"","Offers":[{"resource":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","offerType":"Invalid","offerResourceId":"8D89AJn9ly4=","offerVersion":"V2","content":{"offerThroughput":400,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"EM1W","_rid":"EM1W","_self":"offers\/EM1W\/","_etag":"\"00006202-0000-0700-0000-5df03fad0000\"","_ts":1576026029}],"_count":1}' + string: '{"_rid":"","Offers":[{"resource":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","offerType":"Invalid","offerResourceId":"jZVvANXUXCw=","offerVersion":"V2","content":{"offerThroughput":400,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"y8Kp","_rid":"y8Kp","_self":"offers\/y8Kp\/","_etag":"\"00003f07-0000-0700-0000-5eebcd150000\"","_ts":1592511765}],"_count":1}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/offers + - https://clibctoeoykxbsf-westus.documents.azure.com/offers content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:31 GMT + - Thu, 18 Jun 2020 20:22:47 GMT lsn: - - '5' + - '7' pragma: - no-cache server: @@ -1931,17 +2960,17 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - e1536081-bda9-418f-9ba3-fa88e7eb3465 + - ebb0a9cc-5efc-4aad-aa32-7621d075e189 x-ms-cosmos-llsn: - - '5' + - '7' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '5' + - '7' x-ms-item-count: - '1' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 22:31:33.596 GMT + - Thu, 18 Jun 2020 19:30:49.836 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -1949,11 +2978,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#5 + - 0:-1#7 x-ms-transport-request-id: - - '4915' + - '61684' x-ms-xp-role: - '1' status: @@ -1975,15 +3004,15 @@ interactions: ParameterSetName: - -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -1992,7 +3021,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:33 GMT + - Thu, 18 Jun 2020 20:22:48 GMT pragma: - no-cache server: @@ -2006,9 +3035,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: Ok @@ -2026,31 +3055,31 @@ interactions: ParameterSetName: - -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:33 GMT + - Thu, 18 Jun 2020 20:22:49 GMT pragma: - no-cache server: @@ -2064,7 +3093,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2082,11 +3111,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:33 GMT + - Thu, 18 Jun 2020 20:22:49 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -2099,16 +3128,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:34 GMT + - Thu, 18 Jun 2020 20:22:49 GMT pragma: - no-cache server: @@ -2124,7 +3153,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -2133,7 +3162,7 @@ interactions: code: 200 message: Ok - request: - body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"clijsu7hpf62ywb"}]}' + body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"cliycu7j655tlro"}]}' headers: Accept: - application/json @@ -2148,11 +3177,11 @@ interactions: Content-Type: - application/query+json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:34 GMT + - Thu, 18 Jun 2020 20:22:49 GMT x-ms-documentdb-isquery: - 'true' x-ms-documentdb-query-iscontinuationexpected: @@ -2163,7 +3192,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/ response: body: - string: '{"_rid":"8D89AA==","DocumentCollections":[{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026029,"_self":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","_etag":"\"00006102-0000-0700-0000-5df03fad0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}],"_count":1}' + string: '{"_rid":"jZVvAA==","DocumentCollections":[{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511765,"_self":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","_etag":"\"00003e07-0000-0700-0000-5eebcd150000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}],"_count":1}' headers: cache-control: - no-store, no-cache @@ -2174,9 +3203,9 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:34 GMT + - Thu, 18 Jun 2020 20:22:49 GMT lsn: - - '5' + - '7' pragma: - no-cache server: @@ -2186,21 +3215,23 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 356b5693-5a18-4208-9c81-72267b3b19a5 + - 919c0edd-2977-4874-9fa6-733db09c6664 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-content-path: - - 8D89AA== + - jZVvAA== x-ms-cosmos-llsn: - - '5' + - '7' + x-ms-cosmos-query-execution-info: + - '{"reverseRidEnabled":true,"reverseIndexScan":false}' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '5' + - '7' x-ms-item-count: - '1' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:53:56.555 GMT + - Thu, 18 Jun 2020 19:18:15.024 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -2212,13 +3243,13 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#5 + - 0:-1#7 x-ms-transport-request-id: - - '8760' + - '52478' x-ms-xp-role: - - '2' + - '1' status: code: 200 message: Ok @@ -2238,15 +3269,15 @@ interactions: ParameterSetName: - -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -2255,7 +3286,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:35 GMT + - Thu, 18 Jun 2020 20:22:50 GMT pragma: - no-cache server: @@ -2269,7 +3300,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2289,31 +3320,31 @@ interactions: ParameterSetName: - -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:35 GMT + - Thu, 18 Jun 2020 20:22:51 GMT pragma: - no-cache server: @@ -2327,7 +3358,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2345,11 +3376,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:35 GMT + - Thu, 18 Jun 2020 20:22:52 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -2362,16 +3393,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:35 GMT + - Thu, 18 Jun 2020 20:22:52 GMT pragma: - no-cache server: @@ -2387,7 +3418,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -2411,11 +3442,11 @@ interactions: Content-Type: - application/query+json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:36 GMT + - Thu, 18 Jun 2020 20:22:52 GMT x-ms-documentdb-isquery: - 'true' x-ms-documentdb-query-iscontinuationexpected: @@ -2426,7 +3457,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/ response: body: - string: '{"_rid":"8D89AA==","DocumentCollections":[],"_count":0}' + string: '{"_rid":"jZVvAA==","DocumentCollections":[],"_count":0}' headers: cache-control: - no-store, no-cache @@ -2437,9 +3468,9 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:35 GMT + - Thu, 18 Jun 2020 20:22:51 GMT lsn: - - '5' + - '7' pragma: - no-cache server: @@ -2449,21 +3480,23 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 8f31675d-8c70-4784-8bd6-8741be7af721 + - 8ec81ce8-879c-419f-9b0e-0107a76d4225 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-content-path: - - 8D89AA== + - jZVvAA== x-ms-cosmos-llsn: - - '5' + - '7' + x-ms-cosmos-query-execution-info: + - '{"reverseRidEnabled":true,"reverseIndexScan":false}' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '5' + - '7' x-ms-item-count: - '0' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 23:08:55.831 GMT + - Thu, 18 Jun 2020 20:14:23.367 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -2475,13 +3508,13 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#5 + - 0:-1#7 x-ms-transport-request-id: - - '14678' + - '56015' x-ms-xp-role: - - '1' + - '2' status: code: 200 message: Ok @@ -2501,15 +3534,15 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -2518,7 +3551,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:37 GMT + - Thu, 18 Jun 2020 20:22:53 GMT pragma: - no-cache server: @@ -2532,7 +3565,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2552,31 +3585,31 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:36 GMT + - Thu, 18 Jun 2020 20:22:54 GMT pragma: - no-cache server: @@ -2590,7 +3623,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2608,11 +3641,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:37 GMT + - Thu, 18 Jun 2020 20:22:54 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -2625,16 +3658,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:37 GMT + - Thu, 18 Jun 2020 20:22:54 GMT pragma: - no-cache server: @@ -2650,7 +3683,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -2672,11 +3705,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:38 GMT + - Thu, 18 Jun 2020 20:22:55 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -2685,18 +3718,18 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/ response: body: - string: '{"_rid":"8D89AA==","DocumentCollections":[{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026029,"_self":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","_etag":"\"00006102-0000-0700-0000-5df03fad0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}],"_count":1}' + string: '{"_rid":"jZVvAA==","DocumentCollections":[{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511765,"_self":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","_etag":"\"00003e07-0000-0700-0000-5eebcd150000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}],"_count":1}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/dbs/clil3ehq4btqxde/colls/ + - https://clibctoeoykxbsf-westus.documents.azure.com/dbs/cli7tl6bwxcvqpn/colls/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:38 GMT + - Thu, 18 Jun 2020 20:22:54 GMT lsn: - - '5' + - '7' pragma: - no-cache server: @@ -2706,21 +3739,21 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 8ae3b34a-7f67-4b01-b36c-c86852e0bddf + - b652ccbe-75ae-423d-8603-4355e049ecaf x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-content-path: - - 8D89AA== + - jZVvAA== x-ms-cosmos-llsn: - - '5' + - '7' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '5' + - '7' x-ms-item-count: - '1' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:53:56.555 GMT + - Thu, 18 Jun 2020 20:14:23.367 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -2732,11 +3765,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#5 + - 0:-1#7 x-ms-transport-request-id: - - '11407' + - '49711' x-ms-xp-role: - '2' status: @@ -2758,15 +3791,15 @@ interactions: ParameterSetName: - --throughput -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -2775,7 +3808,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:37 GMT + - Thu, 18 Jun 2020 20:22:55 GMT pragma: - no-cache server: @@ -2789,7 +3822,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2809,31 +3842,31 @@ interactions: ParameterSetName: - --throughput -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:39 GMT + - Thu, 18 Jun 2020 20:22:56 GMT pragma: - no-cache server: @@ -2847,7 +3880,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2865,11 +3898,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:39 GMT + - Thu, 18 Jun 2020 20:22:56 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -2882,16 +3915,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:39 GMT + - Thu, 18 Jun 2020 20:22:56 GMT pragma: - no-cache server: @@ -2907,7 +3940,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -2929,11 +3962,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:39 GMT + - Thu, 18 Jun 2020 20:22:57 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -2942,7 +3975,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ response: body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026029,"_self":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","_etag":"\"00006102-0000-0700-0000-5df03fad0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' + string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511765,"_self":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","_etag":"\"00003e07-0000-0700-0000-5eebcd150000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' headers: cache-control: - no-store, no-cache @@ -2951,13 +3984,13 @@ interactions: collection-service-index: - '0' content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/dbs/clil3ehq4btqxde/colls/clijsu7hpf62ywb/ + - https://clibctoeoykxbsf-westus.documents.azure.com/dbs/cli7tl6bwxcvqpn/colls/cliycu7j655tlro/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:39 GMT + - Thu, 18 Jun 2020 20:22:56 GMT etag: - - '"00006102-0000-0700-0000-5df03fad0000"' + - '"00003e07-0000-0700-0000-5eebcd150000"' lsn: - '1' pragma: @@ -2969,35 +4002,27 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 16888f08-ad77-44c7-904a-8cb3ce73b15d + - 12e1affb-b24a-42fa-8f08-1001d4826055 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-content-path: - - 8D89AA== + - jZVvAA== x-ms-cosmos-item-llsn: - '1' x-ms-cosmos-llsn: - '1' - x-ms-cosmos-quorum-acked-llsn: - - '1' - x-ms-current-replica-set-size: - - '4' - x-ms-current-write-quorum: - - '3' x-ms-documentdb-collection-index-transformation-progress: - '100' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - '1' x-ms-item-lsn: - '1' x-ms-last-state-change-utc: - - Sat, 07 Dec 2019 06:31:30.894 GMT + - Thu, 18 Jun 2020 20:11:57.038 GMT x-ms-number-of-read-regions: - '0' - x-ms-quorum-acked-lsn: - - '1' x-ms-request-charge: - '1' x-ms-resource-quota: @@ -3007,11 +4032,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - 0:-1#1 x-ms-transport-request-id: - - '1' + - '3' x-ms-xp-role: - '1' status: @@ -3031,11 +4056,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:40 GMT + - Thu, 18 Jun 2020 20:22:57 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -3044,18 +4069,18 @@ interactions: uri: https://cli000003-westus.documents.azure.com/offers response: body: - string: '{"_rid":"","Offers":[{"resource":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","offerType":"Invalid","offerResourceId":"8D89AJn9ly4=","offerVersion":"V2","content":{"offerThroughput":400,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"EM1W","_rid":"EM1W","_self":"offers\/EM1W\/","_etag":"\"00006202-0000-0700-0000-5df03fad0000\"","_ts":1576026029}],"_count":1}' + string: '{"_rid":"","Offers":[{"resource":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","offerType":"Invalid","offerResourceId":"jZVvANXUXCw=","offerVersion":"V2","content":{"offerThroughput":400,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"y8Kp","_rid":"y8Kp","_self":"offers\/y8Kp\/","_etag":"\"00003f07-0000-0700-0000-5eebcd150000\"","_ts":1592511765}],"_count":1}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/offers + - https://clibctoeoykxbsf-westus.documents.azure.com/offers content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:39 GMT + - Thu, 18 Jun 2020 20:22:56 GMT lsn: - - '5' + - '7' pragma: - no-cache server: @@ -3065,17 +4090,17 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 08308167-f13b-40ad-b9cc-26edde920eb6 + - cd5001d9-8652-4b9b-ada5-9f0a5f1692c4 x-ms-cosmos-llsn: - - '5' + - '7' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '5' + - '7' x-ms-item-count: - '1' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 22:31:33.596 GMT + - Thu, 18 Jun 2020 19:30:49.836 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -3083,18 +4108,18 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#5 + - 0:-1#7 x-ms-transport-request-id: - - '5717' + - '50709' x-ms-xp-role: - '1' status: code: 200 message: Ok - request: - body: '{"resource":"dbs/8D89AA==/colls/8D89AJn9ly4=/","offerType":"Invalid","offerResourceId":"8D89AJn9ly4=","offerVersion":"V2","content":{"offerThroughput":500,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"EM1W","_rid":"EM1W","_self":"offers/EM1W/","_etag":"\"00006202-0000-0700-0000-5df03fad0000\"","_ts":1576026029}' + body: '{"resource":"dbs/jZVvAA==/colls/jZVvANXUXCw=/","offerType":"Invalid","offerResourceId":"jZVvANXUXCw=","offerVersion":"V2","content":{"offerThroughput":500,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":400,"maxConsumedStorageEverInKB":0}},"id":"y8Kp","_rid":"y8Kp","_self":"offers/y8Kp/","_etag":"\"00003f07-0000-0700-0000-5eebcd150000\"","_ts":1592511765}' headers: Accept: - application/json @@ -3109,33 +4134,33 @@ interactions: Content-Type: - application/json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:40 GMT + - Thu, 18 Jun 2020 20:22:57 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: - '2018-09-17' method: PUT - uri: https://cli000003-westus.documents.azure.com/offers/EM1W/ + uri: https://cli000003-westus.documents.azure.com/offers/y8Kp/ response: body: - string: '{"resource":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","offerType":"Invalid","offerResourceId":"8D89AJn9ly4=","offerVersion":"V2","content":{"offerThroughput":500,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":500,"maxConsumedStorageEverInKB":0},"offerLastReplaceTimestamp":1576026040},"id":"EM1W","_rid":"EM1W","_self":"offers\/EM1W\/","_etag":"\"00006502-0000-0700-0000-5df03fb80000\"","_ts":1576026040}' + string: '{"resource":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","offerType":"Invalid","offerResourceId":"jZVvANXUXCw=","offerVersion":"V2","content":{"offerThroughput":500,"offerIsRUPerMinuteThroughputEnabled":false,"offerMinimumThroughputParameters":{"maxThroughputEverProvisioned":500,"maxConsumedStorageEverInKB":0},"offerLastReplaceTimestamp":1592511777},"id":"y8Kp","_rid":"y8Kp","_self":"offers\/y8Kp\/","_etag":"\"00004207-0000-0700-0000-5eebcd210000\"","_ts":1592511777}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/offers/EM1W/ + - https://clibctoeoykxbsf-westus.documents.azure.com/offers/y8Kp/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:40 GMT + - Thu, 18 Jun 2020 20:22:56 GMT etag: - - '"00006502-0000-0700-0000-5df03fb80000"' + - '"00004207-0000-0700-0000-5eebcd210000"' lsn: - - '6' + - '8' pragma: - no-cache server: @@ -3145,35 +4170,35 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 662fbed2-750e-406a-8b04-030b862c5060 + - a7f04032-bb6f-40de-b538-680b380a3ac7 x-ms-cosmos-llsn: - - '6' + - '8' x-ms-cosmos-quorum-acked-llsn: - - '5' + - '7' x-ms-current-replica-set-size: - '4' x-ms-current-write-quorum: - '3' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '5' + - '7' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:53:57.175 GMT + - Thu, 18 Jun 2020 20:14:26.919 GMT x-ms-number-of-read-regions: - '0' x-ms-quorum-acked-lsn: - - '5' + - '7' x-ms-request-charge: - '9.9' x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#6 + - 0:-1#8 x-ms-transport-request-id: - - '13737' + - '54324' x-ms-xp-role: - '1' status: @@ -3195,15 +4220,15 @@ interactions: ParameterSetName: - --default-ttl -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -3212,7 +4237,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:40 GMT + - Thu, 18 Jun 2020 20:22:58 GMT pragma: - no-cache server: @@ -3226,7 +4251,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -3246,31 +4271,31 @@ interactions: ParameterSetName: - --default-ttl -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:41 GMT + - Thu, 18 Jun 2020 20:22:59 GMT pragma: - no-cache server: @@ -3284,7 +4309,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -3302,11 +4327,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:41 GMT + - Thu, 18 Jun 2020 20:22:59 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -3319,16 +4344,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:41 GMT + - Thu, 18 Jun 2020 20:22:59 GMT pragma: - no-cache server: @@ -3344,7 +4369,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -3366,11 +4391,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:41 GMT + - Thu, 18 Jun 2020 20:22:59 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -3379,7 +4404,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ response: body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026029,"_self":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","_etag":"\"00006102-0000-0700-0000-5df03fad0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' + string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511765,"_self":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","_etag":"\"00003e07-0000-0700-0000-5eebcd150000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' headers: cache-control: - no-store, no-cache @@ -3388,13 +4413,13 @@ interactions: collection-service-index: - '0' content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/dbs/clil3ehq4btqxde/colls/clijsu7hpf62ywb/ + - https://clibctoeoykxbsf-westus.documents.azure.com/dbs/cli7tl6bwxcvqpn/colls/cliycu7j655tlro/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:41 GMT + - Thu, 18 Jun 2020 20:22:59 GMT etag: - - '"00006102-0000-0700-0000-5df03fad0000"' + - '"00003e07-0000-0700-0000-5eebcd150000"' lsn: - '2' pragma: @@ -3406,27 +4431,35 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 5b6ca5a0-6cb8-4b92-8694-b43c777d6e54 + - 940afd26-115a-4691-a244-b884ca64faf3 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-content-path: - - 8D89AA== + - jZVvAA== x-ms-cosmos-item-llsn: - '1' x-ms-cosmos-llsn: - '2' + x-ms-cosmos-quorum-acked-llsn: + - '2' + x-ms-current-replica-set-size: + - '4' + x-ms-current-write-quorum: + - '3' x-ms-documentdb-collection-index-transformation-progress: - '100' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - '2' x-ms-item-lsn: - '1' x-ms-last-state-change-utc: - - Sat, 07 Dec 2019 06:31:30.284 GMT + - Thu, 18 Jun 2020 20:11:48.322 GMT x-ms-number-of-read-regions: - '0' + x-ms-quorum-acked-lsn: + - '2' x-ms-request-charge: - '1' x-ms-resource-quota: @@ -3436,7 +4469,7 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - 0:-1#2 x-ms-transport-request-id: @@ -3447,7 +4480,7 @@ interactions: code: 200 message: Ok - request: - body: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026029,"_self":"dbs/8D89AA==/colls/8D89AJn9ly4=/","_etag":"\"00006102-0000-0700-0000-5df03fad0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","defaultTtl":1000}' + body: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511765,"_self":"dbs/jZVvAA==/colls/jZVvANXUXCw=/","_etag":"\"00003e07-0000-0700-0000-5eebcd150000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","defaultTtl":1000}' headers: Accept: - application/json @@ -3462,11 +4495,11 @@ interactions: Content-Type: - application/json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:42 GMT + - Thu, 18 Jun 2020 20:23:00 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -3475,7 +4508,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ response: body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"defaultTtl":1000,"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026042,"_self":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","_etag":"\"00006602-0000-0700-0000-5df03fba0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' + string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"defaultTtl":1000,"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511779,"_self":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","_etag":"\"00004307-0000-0700-0000-5eebcd230000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' headers: cache-control: - no-store, no-cache @@ -3484,13 +4517,13 @@ interactions: collection-service-index: - '0' content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/dbs/clil3ehq4btqxde/colls/clijsu7hpf62ywb/ + - https://clibctoeoykxbsf-westus.documents.azure.com/dbs/cli7tl6bwxcvqpn/colls/cliycu7j655tlro/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:41 GMT + - Thu, 18 Jun 2020 20:22:59 GMT etag: - - '"00006602-0000-0700-0000-5df03fba0000"' + - '"00004307-0000-0700-0000-5eebcd230000"' lsn: - '3' pragma: @@ -3502,9 +4535,9 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 5b45ccc0-05ef-449b-b629-88c45a4a2400 + - 56b298e3-f80e-4b64-98b0-5d7f687043f0 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-cosmos-llsn: - '3' x-ms-cosmos-quorum-acked-llsn: @@ -3514,11 +4547,11 @@ interactions: x-ms-current-write-quorum: - '3' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - '2' x-ms-last-state-change-utc: - - Sat, 07 Dec 2019 06:31:30.894 GMT + - Thu, 18 Jun 2020 20:11:48.322 GMT x-ms-number-of-read-regions: - '0' x-ms-quorum-acked-lsn: @@ -3532,11 +4565,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - 0:-1#3 x-ms-transport-request-id: - - '1' + - '2' x-ms-xp-role: - '1' status: @@ -3558,15 +4591,15 @@ interactions: ParameterSetName: - --default-ttl -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -3575,7 +4608,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:42 GMT + - Thu, 18 Jun 2020 20:23:00 GMT pragma: - no-cache server: @@ -3589,7 +4622,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -3609,31 +4642,31 @@ interactions: ParameterSetName: - --default-ttl -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:43 GMT + - Thu, 18 Jun 2020 20:23:01 GMT pragma: - no-cache server: @@ -3647,7 +4680,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -3665,11 +4698,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:43 GMT + - Thu, 18 Jun 2020 20:23:01 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -3682,16 +4715,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:43 GMT + - Thu, 18 Jun 2020 20:23:01 GMT pragma: - no-cache server: @@ -3707,7 +4740,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -3729,11 +4762,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:43 GMT + - Thu, 18 Jun 2020 20:23:02 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -3742,7 +4775,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ response: body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"defaultTtl":1000,"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026042,"_self":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","_etag":"\"00006602-0000-0700-0000-5df03fba0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' + string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"defaultTtl":1000,"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511779,"_self":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","_etag":"\"00004307-0000-0700-0000-5eebcd230000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' headers: cache-control: - no-store, no-cache @@ -3751,13 +4784,13 @@ interactions: collection-service-index: - '0' content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/dbs/clil3ehq4btqxde/colls/clijsu7hpf62ywb/ + - https://clibctoeoykxbsf-westus.documents.azure.com/dbs/cli7tl6bwxcvqpn/colls/cliycu7j655tlro/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:44 GMT + - Thu, 18 Jun 2020 20:23:02 GMT etag: - - '"00006602-0000-0700-0000-5df03fba0000"' + - '"00004307-0000-0700-0000-5eebcd230000"' lsn: - '3' pragma: @@ -3769,11 +4802,11 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 82c7f99c-24a4-4cac-88cf-068450e0f8b4 + - af3f8be7-7b72-407f-a2cd-22cd790db127 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-content-path: - - 8D89AA== + - jZVvAA== x-ms-cosmos-item-llsn: - '3' x-ms-cosmos-llsn: @@ -3781,13 +4814,13 @@ interactions: x-ms-documentdb-collection-index-transformation-progress: - '100' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - '3' x-ms-item-lsn: - '3' x-ms-last-state-change-utc: - - Thu, 05 Dec 2019 01:26:48.823 GMT + - Thu, 18 Jun 2020 20:11:57.038 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -3799,7 +4832,7 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - 0:-1#3 x-ms-transport-request-id: @@ -3810,7 +4843,7 @@ interactions: code: 200 message: Ok - request: - body: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026042,"_self":"dbs/8D89AA==/colls/8D89AJn9ly4=/","_etag":"\"00006602-0000-0700-0000-5df03fba0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}' + body: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511779,"_self":"dbs/jZVvAA==/colls/jZVvANXUXCw=/","_etag":"\"00004307-0000-0700-0000-5eebcd230000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}' headers: Accept: - application/json @@ -3825,11 +4858,11 @@ interactions: Content-Type: - application/json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:44 GMT + - Thu, 18 Jun 2020 20:23:02 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -3838,7 +4871,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/cli000002/ response: body: - string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8D89AJn9ly4=","_ts":1576026044,"_self":"dbs\/8D89AA==\/colls\/8D89AJn9ly4=\/","_etag":"\"00006702-0000-0700-0000-5df03fbc0000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' + string: '{"id":"cli000002","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"\/*"}],"excludedPaths":[{"path":"\/\"_etag\"\/?"}]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"\/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"jZVvANXUXCw=","_ts":1592511782,"_self":"dbs\/jZVvAA==\/colls\/jZVvANXUXCw=\/","_etag":"\"00004407-0000-0700-0000-5eebcd260000\"","_docs":"docs\/","_sprocs":"sprocs\/","_triggers":"triggers\/","_udfs":"udfs\/","_conflicts":"conflicts\/"}' headers: cache-control: - no-store, no-cache @@ -3847,13 +4880,13 @@ interactions: collection-service-index: - '0' content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/dbs/clil3ehq4btqxde/colls/clijsu7hpf62ywb/ + - https://clibctoeoykxbsf-westus.documents.azure.com/dbs/cli7tl6bwxcvqpn/colls/cliycu7j655tlro/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:44 GMT + - Thu, 18 Jun 2020 20:23:02 GMT etag: - - '"00006702-0000-0700-0000-5df03fbc0000"' + - '"00004407-0000-0700-0000-5eebcd260000"' lsn: - '4' pragma: @@ -3865,9 +4898,9 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - c0c7fe68-2390-4849-b18b-cf51d9054820 + - 31f8bd2b-1bdc-4d73-908e-b03a1ab29384 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-cosmos-llsn: - '4' x-ms-cosmos-quorum-acked-llsn: @@ -3877,11 +4910,11 @@ interactions: x-ms-current-write-quorum: - '3' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - '3' x-ms-last-state-change-utc: - - Sat, 07 Dec 2019 06:31:30.894 GMT + - Thu, 18 Jun 2020 20:11:48.322 GMT x-ms-number-of-read-regions: - '0' x-ms-quorum-acked-lsn: @@ -3895,11 +4928,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - 0:-1#4 x-ms-transport-request-id: - - '1' + - '2' x-ms-xp-role: - '1' status: @@ -3919,17 +4952,17 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -n -d -c + - -g -n -d -c --yes User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -3938,7 +4971,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:44 GMT + - Thu, 18 Jun 2020 20:23:03 GMT pragma: - no-cache server: @@ -3952,7 +4985,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -3970,33 +5003,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n -d -c + - -g -n -d -c --yes User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:45 GMT + - Thu, 18 Jun 2020 20:23:03 GMT pragma: - no-cache server: @@ -4010,7 +5043,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -4028,11 +5061,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:45 GMT + - Thu, 18 Jun 2020 20:23:04 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -4045,16 +5078,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:44 GMT + - Thu, 18 Jun 2020 20:23:04 GMT pragma: - no-cache server: @@ -4070,7 +5103,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -4092,11 +5125,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:45 GMT + - Thu, 18 Jun 2020 20:23:04 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -4116,13 +5149,13 @@ interactions: content-length: - '0' content-location: - - https://clilqedn4cizfl3-westus.documents.azure.com/dbs/clil3ehq4btqxde/colls/clijsu7hpf62ywb/ + - https://clibctoeoykxbsf-westus.documents.azure.com/dbs/cli7tl6bwxcvqpn/colls/cliycu7j655tlro/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:45 GMT + - Thu, 18 Jun 2020 20:23:04 GMT lsn: - - '9' + - '11' pragma: - no-cache server: @@ -4130,27 +5163,27 @@ interactions: strict-transport-security: - max-age=31536000 x-ms-activity-id: - - b7b75798-c90b-423b-9fa6-2e58e2497a2c + - 45154109-6966-49e8-9b72-5e3427b9f7c9 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-cosmos-llsn: - - '9' + - '11' x-ms-cosmos-quorum-acked-llsn: - - '8' + - '10' x-ms-current-replica-set-size: - '4' x-ms-current-write-quorum: - '3' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '8' + - '10' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:53:57.175 GMT + - Thu, 18 Jun 2020 20:14:26.919 GMT x-ms-number-of-read-regions: - '0' x-ms-quorum-acked-lsn: - - '8' + - '10' x-ms-request-charge: - '4.95' x-ms-resource-quota: @@ -4160,11 +5193,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#9 + - 0:-1#11 x-ms-transport-request-id: - - '18480' + - '47669' x-ms-xp-role: - '1' status: @@ -4186,15 +5219,15 @@ interactions: ParameterSetName: - -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"CDq76JwadfW0HUoBLxBL19luBiuo3IbtyQBcLYjYq6NZf9LFVcXvbFV6h9CzlfYWe1sZGaUtHRcUnh3dzWoCxQ==","secondaryMasterKey":"0KgZkg2Ob4nWnmZcc9dNrx8TNzHQBGMH4zjKvFqSK1MLYNQtL2qi0U0AH8ZUh9DqvUUa7ZtgZi9dP2zxwuNfpg==","primaryReadonlyMasterKey":"zuEAhs1cIYm7MlQAYz3QF4uyIwUSD0RTZItmzPlOB5Xy91WkmP88DBHf9riZJdg3GTqxbDA0ISmgsiDJExNeqw==","secondaryReadonlyMasterKey":"ZycKy9uX4EVftAcwxeATLuaVvBPGfDek57Lc6NXL7cVe3CCaT0QagFanjXR6NDm58bKwKUm52vNeMiQOviicnA=="}' + string: '{"primaryMasterKey":"2yfbsPgO4kP6YVp1QBYZy7ZNwnR86v1syulMQINmhuG9RNwYEPRuNDgZLCwYvrbaheAhTKCETA3hcr1NUgj4pA==","secondaryMasterKey":"RSdlYUCZmNTLhNHmOnDiwsI2ezBlWxJqzrDP6aBd4x61Nof1OmLXzOaX67VXBLtbU5OIRTlr6OZmuKy32PVJQg==","primaryReadonlyMasterKey":"Btm7ZRyvjBIP12Sio2P0BohSyPs1qwX43nQCnEOe05jZW77p3hwBtksjB6Bmdzjxcph2uuL2kJsHeZBLn4CqkA==","secondaryReadonlyMasterKey":"gbAA6LPqoiDvtu0V2ZNSaW42oOINw0kLxyXjxZCDs3NUYErw7eOHtkCfjzt9UXGXwkhNoqhByZFqA1AAU9XWhA=="}' headers: cache-control: - no-store, no-cache @@ -4203,7 +5236,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:47 GMT + - Thu, 18 Jun 2020 20:23:05 GMT pragma: - no-cache server: @@ -4217,7 +5250,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -4237,31 +5270,31 @@ interactions: ParameterSetName: - -g -n -d -c User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_collection2bnk35t4cldw3q7enfb6xej63y5vp5y3zetklamuiq4bzke/providers/Microsoft.DocumentDB/databaseAccounts/clilqedn4cizfl3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_collectionfv55wqdlz6nfz66pnjgy3wsta23zetqqawl23yacnme7iqy/providers/Microsoft.DocumentDB/databaseAccounts/clibctoeoykxbsf?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:47 GMT + - Thu, 18 Jun 2020 20:23:05 GMT pragma: - no-cache server: @@ -4275,7 +5308,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -4293,11 +5326,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:47 GMT + - Thu, 18 Jun 2020 20:23:06 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -4310,16 +5343,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clilqedn4cizfl3.documents.azure.com/ + - https://clibctoeoykxbsf.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:47 GMT + - Thu, 18 Jun 2020 20:23:06 GMT pragma: - no-cache server: @@ -4335,7 +5368,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -4344,7 +5377,7 @@ interactions: code: 200 message: Ok - request: - body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"clijsu7hpf62ywb"}]}' + body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"cliycu7j655tlro"}]}' headers: Accept: - application/json @@ -4359,11 +5392,11 @@ interactions: Content-Type: - application/query+json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:48 GMT + - Thu, 18 Jun 2020 20:23:07 GMT x-ms-documentdb-isquery: - 'true' x-ms-documentdb-query-iscontinuationexpected: @@ -4374,7 +5407,7 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000004/colls/ response: body: - string: '{"_rid":"8D89AA==","DocumentCollections":[],"_count":0}' + string: '{"_rid":"jZVvAA==","DocumentCollections":[],"_count":0}' headers: cache-control: - no-store, no-cache @@ -4385,9 +5418,9 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:47 GMT + - Thu, 18 Jun 2020 20:23:06 GMT lsn: - - '11' + - '13' pragma: - no-cache server: @@ -4397,21 +5430,23 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 13f6d1c6-657e-4b9f-a48c-11bb9790fb45 + - 3f9fbaaa-f85f-467a-935a-074739bb2ec8 x-ms-alt-content-path: - - dbs/clil3ehq4btqxde + - dbs/cli7tl6bwxcvqpn x-ms-content-path: - - 8D89AA== + - jZVvAA== x-ms-cosmos-llsn: - - '11' + - '13' + x-ms-cosmos-query-execution-info: + - '{"reverseRidEnabled":true,"reverseIndexScan":false}' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '11' + - '13' x-ms-item-count: - '0' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:53:56.555 GMT + - Thu, 18 Jun 2020 19:18:15.024 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -4423,13 +5458,13 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#11 + - 0:-1#13 x-ms-transport-request-id: - - '11543' + - '59286' x-ms-xp-role: - - '2' + - '1' status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_database.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_database.yaml index daf8f2af5aa..27fcaef696b 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_database.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_database.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_database000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001","name":"cli_test_cosmosdb_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T00:52:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001","name":"cli_test_cosmosdb_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 00:52:15 GMT + - Thu, 18 Jun 2020 20:03:47 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1409' + - '1527' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:52:16 GMT + - Thu, 18 Jun 2020 20:03:53 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,891 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:04:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:04:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:06:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:06:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:07:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:07:56 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:08:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:08:56 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:09:28 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:09:58 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:10:28 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:10:58 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:11:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:11:59 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:12:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:12:59 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,24 +1008,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:52:47 GMT + - Thu, 18 Jun 2020 20:13:30 GMT pragma: - no-cache server: @@ -157,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,24 +1057,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:53:18 GMT + - Thu, 18 Jun 2020 20:14:00 GMT pragma: - no-cache server: @@ -206,7 +1088,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,24 +1106,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:53:48 GMT + - Thu, 18 Jun 2020 20:14:30 GMT pragma: - no-cache server: @@ -255,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,24 +1155,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:54:18 GMT + - Thu, 18 Jun 2020 20:15:01 GMT pragma: - no-cache server: @@ -304,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,24 +1204,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:54:48 GMT + - Thu, 18 Jun 2020 20:15:32 GMT pragma: - no-cache server: @@ -353,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,24 +1253,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:55:20 GMT + - Thu, 18 Jun 2020 20:16:02 GMT pragma: - no-cache server: @@ -402,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,24 +1302,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:55:50 GMT + - Thu, 18 Jun 2020 20:16:32 GMT pragma: - no-cache server: @@ -451,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,24 +1351,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:56:20 GMT + - Thu, 18 Jun 2020 20:17:02 GMT pragma: - no-cache server: @@ -500,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,24 +1400,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:56:51 GMT + - Thu, 18 Jun 2020 20:17:32 GMT pragma: - no-cache server: @@ -549,7 +1431,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,24 +1449,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:57:21 GMT + - Thu, 18 Jun 2020 20:18:03 GMT pragma: - no-cache server: @@ -598,7 +1480,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,24 +1498,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:57:52 GMT + - Thu, 18 Jun 2020 20:18:33 GMT pragma: - no-cache server: @@ -647,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,24 +1547,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:58:22 GMT + - Thu, 18 Jun 2020 20:19:05 GMT pragma: - no-cache server: @@ -696,7 +1578,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,24 +1596,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:58:52 GMT + - Thu, 18 Jun 2020 20:19:35 GMT pragma: - no-cache server: @@ -745,7 +1627,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,24 +1645,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:23 GMT + - Thu, 18 Jun 2020 20:20:06 GMT pragma: - no-cache server: @@ -794,7 +1676,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,24 +1694,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2767c092-682f-465c-b793-4ca7c2561ab1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f64963e4-5b65-4828-9ccf-358c832e703c?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:53 GMT + - Thu, 18 Jun 2020 20:20:36 GMT pragma: - no-cache server: @@ -843,7 +1725,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,29 +1743,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:53 GMT + - Thu, 18 Jun 2020 20:20:36 GMT pragma: - no-cache server: @@ -897,7 +1779,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -915,31 +1797,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:54 GMT + - Thu, 18 Jun 2020 20:20:37 GMT pragma: - no-cache server: @@ -953,7 +1835,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -973,15 +1855,15 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"P0BKDIwxPjVlRQDVlZ7Xq6VuGqjfdlsUUWXJ85nTqzwCAJ6fJZzP7xyG4WSfrRY2FMBQJyhmUrcrqrmXB68OEw==","secondaryMasterKey":"0EzpzqxoowdbyqnmtVplCgV1vdnyS0FT920XBSpwl0LH4Jh0XPT94GtkQUn0BclhZzCwUnplvo3Qnsg2WnDQJA==","primaryReadonlyMasterKey":"JLPK1SF842EtYdzYNDTtLhAfhEtKgL1FjLwXwiAv8GEbFroqyWUvCQvLncKyonnGI8KGKfKlCh4vbjZEuifXsA==","secondaryReadonlyMasterKey":"SIvjeFVeZ2zVZM1HvVbcG5xaHdSvreXT8FrQ0J6ASOHIlgovFtu9KbkzvmSgevRZIVzwGl42HKXFNCECy1MjmA=="}' + string: '{"primaryMasterKey":"rWUUDKr5wXcnVw0ObYzZpj4batKAJucKTxjf3PHifO48auYBaXOuBMfhQa9tFqvW6BNWti2JyMteIlNSEYQWKA==","secondaryMasterKey":"olOTdCjc6RY4oj1VDhw57FFlwbd9ku40rN3LpYsfOF1dBSHZNaaM3txXzVm6vcLnk6WZto92Hs4VqsPWGdmbaQ==","primaryReadonlyMasterKey":"uRLcwHYY13cDY9FNHDJsghkzjA00aQWW8WoUDkDEEkmIUzCFasB9chGwEeDNyvJD67AY7WpVeQAuZLL7Ai3OcA==","secondaryReadonlyMasterKey":"OtCAP3lLNKHCDhdMsgTLD4xNvGyxNZgaoSbb7pr0yQNfeCUTaA8LelkCtHlQv0v5sLgbwl0KpBLKnjn4UTkwYg=="}' headers: cache-control: - no-store, no-cache @@ -990,7 +1872,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:55 GMT + - Thu, 18 Jun 2020 20:20:38 GMT pragma: - no-cache server: @@ -1004,7 +1886,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1024,31 +1906,31 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:55 GMT + - Thu, 18 Jun 2020 20:20:38 GMT pragma: - no-cache server: @@ -1062,7 +1944,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1080,11 +1962,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 00:59:56 GMT + - Thu, 18 Jun 2020 20:20:39 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1097,16 +1979,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clicdevlgqplgat.documents.azure.com/ + - https://cliauoc6ozpvytv.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:56 GMT + - Thu, 18 Jun 2020 20:20:39 GMT pragma: - no-cache server: @@ -1122,7 +2004,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1146,11 +2028,11 @@ interactions: Content-Type: - application/json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 00:59:56 GMT + - Thu, 18 Jun 2020 20:20:40 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1159,18 +2041,18 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs response: body: - string: '{"id":"cli000002","_rid":"XQszAA==","_self":"dbs\/XQszAA==\/","_etag":"\"00009302-0000-0700-0000-5df03f8c0000\"","_colls":"colls\/","_users":"users\/","_ts":1576025996}' + string: '{"id":"cli000002","_rid":"QgoJAA==","_self":"dbs\/QgoJAA==\/","_etag":"\"0000ce04-0000-0700-0000-5eebcc980000\"","_colls":"colls\/","_users":"users\/","_ts":1592511640}' headers: cache-control: - no-store, no-cache content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:56 GMT + - Thu, 18 Jun 2020 20:20:40 GMT etag: - - '"00009302-0000-0700-0000-5df03f8c0000"' + - '"0000ce04-0000-0700-0000-5eebcc980000"' lsn: - - '4' + - '6' pragma: - no-cache server: @@ -1180,25 +2062,25 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - e72600d1-4c14-45d0-819a-8b087f986fe2 + - 7db1ba9f-8062-415d-b211-2bba61a1a372 x-ms-cosmos-llsn: - - '4' + - '6' x-ms-cosmos-quorum-acked-llsn: - - '3' + - '5' x-ms-current-replica-set-size: - '4' x-ms-current-write-quorum: - '3' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '3' + - '5' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 23:53:37.894 GMT + - Thu, 18 Jun 2020 19:24:10.630 GMT x-ms-number-of-read-regions: - '0' x-ms-quorum-acked-lsn: - - '3' + - '5' x-ms-request-charge: - '4.95' x-ms-resource-quota: @@ -1208,11 +2090,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#4 + - 0:-1#6 x-ms-transport-request-id: - - '11479' + - '61407' x-ms-xp-role: - '1' status: @@ -1234,15 +2116,15 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"P0BKDIwxPjVlRQDVlZ7Xq6VuGqjfdlsUUWXJ85nTqzwCAJ6fJZzP7xyG4WSfrRY2FMBQJyhmUrcrqrmXB68OEw==","secondaryMasterKey":"0EzpzqxoowdbyqnmtVplCgV1vdnyS0FT920XBSpwl0LH4Jh0XPT94GtkQUn0BclhZzCwUnplvo3Qnsg2WnDQJA==","primaryReadonlyMasterKey":"JLPK1SF842EtYdzYNDTtLhAfhEtKgL1FjLwXwiAv8GEbFroqyWUvCQvLncKyonnGI8KGKfKlCh4vbjZEuifXsA==","secondaryReadonlyMasterKey":"SIvjeFVeZ2zVZM1HvVbcG5xaHdSvreXT8FrQ0J6ASOHIlgovFtu9KbkzvmSgevRZIVzwGl42HKXFNCECy1MjmA=="}' + string: '{"primaryMasterKey":"rWUUDKr5wXcnVw0ObYzZpj4batKAJucKTxjf3PHifO48auYBaXOuBMfhQa9tFqvW6BNWti2JyMteIlNSEYQWKA==","secondaryMasterKey":"olOTdCjc6RY4oj1VDhw57FFlwbd9ku40rN3LpYsfOF1dBSHZNaaM3txXzVm6vcLnk6WZto92Hs4VqsPWGdmbaQ==","primaryReadonlyMasterKey":"uRLcwHYY13cDY9FNHDJsghkzjA00aQWW8WoUDkDEEkmIUzCFasB9chGwEeDNyvJD67AY7WpVeQAuZLL7Ai3OcA==","secondaryReadonlyMasterKey":"OtCAP3lLNKHCDhdMsgTLD4xNvGyxNZgaoSbb7pr0yQNfeCUTaA8LelkCtHlQv0v5sLgbwl0KpBLKnjn4UTkwYg=="}' headers: cache-control: - no-store, no-cache @@ -1251,7 +2133,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:57 GMT + - Thu, 18 Jun 2020 20:20:40 GMT pragma: - no-cache server: @@ -1265,7 +2147,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1285,31 +2167,31 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:57 GMT + - Thu, 18 Jun 2020 20:20:40 GMT pragma: - no-cache server: @@ -1323,7 +2205,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1341,11 +2223,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 00:59:58 GMT + - Thu, 18 Jun 2020 20:20:41 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1358,16 +2240,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clicdevlgqplgat.documents.azure.com/ + - https://cliauoc6ozpvytv.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:57 GMT + - Thu, 18 Jun 2020 20:20:42 GMT pragma: - no-cache server: @@ -1383,7 +2265,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1405,11 +2287,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 00:59:58 GMT + - Thu, 18 Jun 2020 20:20:42 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1418,20 +2300,20 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs/cli000002/ response: body: - string: '{"id":"cli000002","_rid":"XQszAA==","_self":"dbs\/XQszAA==\/","_etag":"\"00009302-0000-0700-0000-5df03f8c0000\"","_colls":"colls\/","_users":"users\/","_ts":1576025996}' + string: '{"id":"cli000002","_rid":"QgoJAA==","_self":"dbs\/QgoJAA==\/","_etag":"\"0000ce04-0000-0700-0000-5eebcc980000\"","_colls":"colls\/","_users":"users\/","_ts":1592511640}' headers: cache-control: - no-store, no-cache content-location: - - https://clicdevlgqplgat-westus.documents.azure.com/dbs/clittwezj3wg4nn/ + - https://cliauoc6ozpvytv-westus.documents.azure.com/dbs/clivgell4fqn2gw/ content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:57 GMT + - Thu, 18 Jun 2020 20:20:42 GMT etag: - - '"00009302-0000-0700-0000-5df03f8c0000"' + - '"0000ce04-0000-0700-0000-5eebcc980000"' lsn: - - '4' + - '6' pragma: - no-cache server: @@ -1441,19 +2323,19 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - e5985d22-7b44-4fc5-a1a2-ad33714150a9 + - e26db616-f94a-47eb-8330-5404f12ea7d5 x-ms-cosmos-item-llsn: - - '4' + - '6' x-ms-cosmos-llsn: - - '4' + - '6' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '4' + - '6' x-ms-item-lsn: - - '4' + - '6' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:02:14.649 GMT + - Thu, 18 Jun 2020 11:16:26.693 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -1465,11 +2347,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#4 + - 0:-1#6 x-ms-transport-request-id: - - '11917' + - '61911' x-ms-xp-role: - '1' status: @@ -1491,15 +2373,15 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"P0BKDIwxPjVlRQDVlZ7Xq6VuGqjfdlsUUWXJ85nTqzwCAJ6fJZzP7xyG4WSfrRY2FMBQJyhmUrcrqrmXB68OEw==","secondaryMasterKey":"0EzpzqxoowdbyqnmtVplCgV1vdnyS0FT920XBSpwl0LH4Jh0XPT94GtkQUn0BclhZzCwUnplvo3Qnsg2WnDQJA==","primaryReadonlyMasterKey":"JLPK1SF842EtYdzYNDTtLhAfhEtKgL1FjLwXwiAv8GEbFroqyWUvCQvLncKyonnGI8KGKfKlCh4vbjZEuifXsA==","secondaryReadonlyMasterKey":"SIvjeFVeZ2zVZM1HvVbcG5xaHdSvreXT8FrQ0J6ASOHIlgovFtu9KbkzvmSgevRZIVzwGl42HKXFNCECy1MjmA=="}' + string: '{"primaryMasterKey":"rWUUDKr5wXcnVw0ObYzZpj4batKAJucKTxjf3PHifO48auYBaXOuBMfhQa9tFqvW6BNWti2JyMteIlNSEYQWKA==","secondaryMasterKey":"olOTdCjc6RY4oj1VDhw57FFlwbd9ku40rN3LpYsfOF1dBSHZNaaM3txXzVm6vcLnk6WZto92Hs4VqsPWGdmbaQ==","primaryReadonlyMasterKey":"uRLcwHYY13cDY9FNHDJsghkzjA00aQWW8WoUDkDEEkmIUzCFasB9chGwEeDNyvJD67AY7WpVeQAuZLL7Ai3OcA==","secondaryReadonlyMasterKey":"OtCAP3lLNKHCDhdMsgTLD4xNvGyxNZgaoSbb7pr0yQNfeCUTaA8LelkCtHlQv0v5sLgbwl0KpBLKnjn4UTkwYg=="}' headers: cache-control: - no-store, no-cache @@ -1508,7 +2390,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:58 GMT + - Thu, 18 Jun 2020 20:20:43 GMT pragma: - no-cache server: @@ -1522,7 +2404,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1542,31 +2424,31 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:00 GMT + - Thu, 18 Jun 2020 20:20:43 GMT pragma: - no-cache server: @@ -1580,7 +2462,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1598,11 +2480,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:00 GMT + - Thu, 18 Jun 2020 20:20:43 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1615,16 +2497,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clicdevlgqplgat.documents.azure.com/ + - https://cliauoc6ozpvytv.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:59 GMT + - Thu, 18 Jun 2020 20:20:44 GMT pragma: - no-cache server: @@ -1640,7 +2522,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1649,7 +2531,7 @@ interactions: code: 200 message: Ok - request: - body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"clittwezj3wg4nn"}]}' + body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"clivgell4fqn2gw"}]}' headers: Accept: - application/json @@ -1664,11 +2546,11 @@ interactions: Content-Type: - application/query+json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:00 GMT + - Thu, 18 Jun 2020 20:20:44 GMT x-ms-documentdb-isquery: - 'true' x-ms-documentdb-query-iscontinuationexpected: @@ -1679,16 +2561,16 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs response: body: - string: '{"_rid":"","Databases":[{"id":"cli000002","_rid":"XQszAA==","_self":"dbs\/XQszAA==\/","_etag":"\"00009302-0000-0700-0000-5df03f8c0000\"","_colls":"colls\/","_users":"users\/","_ts":1576025996}],"_count":1}' + string: '{"_rid":"","Databases":[{"id":"cli000002","_rid":"QgoJAA==","_self":"dbs\/QgoJAA==\/","_etag":"\"0000ce04-0000-0700-0000-5eebcc980000\"","_colls":"colls\/","_users":"users\/","_ts":1592511640}],"_count":1}' headers: cache-control: - no-store, no-cache content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:00 GMT + - Thu, 18 Jun 2020 20:20:44 GMT lsn: - - '4' + - '6' pragma: - no-cache server: @@ -1698,17 +2580,19 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 384f948e-fb61-4c14-83f7-7a71f100e5e9 + - 34c95370-e288-4c83-9d7b-f087f4602789 x-ms-cosmos-llsn: - - '4' + - '6' + x-ms-cosmos-query-execution-info: + - '{"reverseRidEnabled":true,"reverseIndexScan":false}' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '4' + - '6' x-ms-item-count: - '1' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:02:14.649 GMT + - Thu, 18 Jun 2020 19:20:46.099 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -1720,13 +2604,13 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#4 + - 0:-1#6 x-ms-transport-request-id: - - '10986' + - '64536' x-ms-xp-role: - - '1' + - '2' status: code: 200 message: Ok @@ -1746,15 +2630,15 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"P0BKDIwxPjVlRQDVlZ7Xq6VuGqjfdlsUUWXJ85nTqzwCAJ6fJZzP7xyG4WSfrRY2FMBQJyhmUrcrqrmXB68OEw==","secondaryMasterKey":"0EzpzqxoowdbyqnmtVplCgV1vdnyS0FT920XBSpwl0LH4Jh0XPT94GtkQUn0BclhZzCwUnplvo3Qnsg2WnDQJA==","primaryReadonlyMasterKey":"JLPK1SF842EtYdzYNDTtLhAfhEtKgL1FjLwXwiAv8GEbFroqyWUvCQvLncKyonnGI8KGKfKlCh4vbjZEuifXsA==","secondaryReadonlyMasterKey":"SIvjeFVeZ2zVZM1HvVbcG5xaHdSvreXT8FrQ0J6ASOHIlgovFtu9KbkzvmSgevRZIVzwGl42HKXFNCECy1MjmA=="}' + string: '{"primaryMasterKey":"rWUUDKr5wXcnVw0ObYzZpj4batKAJucKTxjf3PHifO48auYBaXOuBMfhQa9tFqvW6BNWti2JyMteIlNSEYQWKA==","secondaryMasterKey":"olOTdCjc6RY4oj1VDhw57FFlwbd9ku40rN3LpYsfOF1dBSHZNaaM3txXzVm6vcLnk6WZto92Hs4VqsPWGdmbaQ==","primaryReadonlyMasterKey":"uRLcwHYY13cDY9FNHDJsghkzjA00aQWW8WoUDkDEEkmIUzCFasB9chGwEeDNyvJD67AY7WpVeQAuZLL7Ai3OcA==","secondaryReadonlyMasterKey":"OtCAP3lLNKHCDhdMsgTLD4xNvGyxNZgaoSbb7pr0yQNfeCUTaA8LelkCtHlQv0v5sLgbwl0KpBLKnjn4UTkwYg=="}' headers: cache-control: - no-store, no-cache @@ -1763,7 +2647,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:01 GMT + - Thu, 18 Jun 2020 20:20:44 GMT pragma: - no-cache server: @@ -1777,7 +2661,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1797,31 +2681,31 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:01 GMT + - Thu, 18 Jun 2020 20:20:45 GMT pragma: - no-cache server: @@ -1835,7 +2719,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1853,11 +2737,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:02 GMT + - Thu, 18 Jun 2020 20:20:45 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1870,16 +2754,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clicdevlgqplgat.documents.azure.com/ + - https://cliauoc6ozpvytv.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:01 GMT + - Thu, 18 Jun 2020 20:20:45 GMT pragma: - no-cache server: @@ -1895,7 +2779,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1919,11 +2803,11 @@ interactions: Content-Type: - application/query+json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:02 GMT + - Thu, 18 Jun 2020 20:20:46 GMT x-ms-documentdb-isquery: - 'true' x-ms-documentdb-query-iscontinuationexpected: @@ -1941,9 +2825,9 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:01 GMT + - Thu, 18 Jun 2020 20:20:46 GMT lsn: - - '4' + - '6' pragma: - no-cache server: @@ -1953,17 +2837,19 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 564941cc-237a-4252-a4b0-784f843cf307 + - 94083b6a-bf83-42b2-886b-d844f53f1823 x-ms-cosmos-llsn: - - '4' + - '6' + x-ms-cosmos-query-execution-info: + - '{"reverseRidEnabled":true,"reverseIndexScan":false}' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '4' + - '6' x-ms-item-count: - '0' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 23:08:42.668 GMT + - Thu, 18 Jun 2020 19:05:40.751 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -1975,13 +2861,13 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#4 + - 0:-1#6 x-ms-transport-request-id: - - '15376' + - '56232' x-ms-xp-role: - - '2' + - '1' status: code: 200 message: Ok @@ -2001,15 +2887,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"P0BKDIwxPjVlRQDVlZ7Xq6VuGqjfdlsUUWXJ85nTqzwCAJ6fJZzP7xyG4WSfrRY2FMBQJyhmUrcrqrmXB68OEw==","secondaryMasterKey":"0EzpzqxoowdbyqnmtVplCgV1vdnyS0FT920XBSpwl0LH4Jh0XPT94GtkQUn0BclhZzCwUnplvo3Qnsg2WnDQJA==","primaryReadonlyMasterKey":"JLPK1SF842EtYdzYNDTtLhAfhEtKgL1FjLwXwiAv8GEbFroqyWUvCQvLncKyonnGI8KGKfKlCh4vbjZEuifXsA==","secondaryReadonlyMasterKey":"SIvjeFVeZ2zVZM1HvVbcG5xaHdSvreXT8FrQ0J6ASOHIlgovFtu9KbkzvmSgevRZIVzwGl42HKXFNCECy1MjmA=="}' + string: '{"primaryMasterKey":"rWUUDKr5wXcnVw0ObYzZpj4batKAJucKTxjf3PHifO48auYBaXOuBMfhQa9tFqvW6BNWti2JyMteIlNSEYQWKA==","secondaryMasterKey":"olOTdCjc6RY4oj1VDhw57FFlwbd9ku40rN3LpYsfOF1dBSHZNaaM3txXzVm6vcLnk6WZto92Hs4VqsPWGdmbaQ==","primaryReadonlyMasterKey":"uRLcwHYY13cDY9FNHDJsghkzjA00aQWW8WoUDkDEEkmIUzCFasB9chGwEeDNyvJD67AY7WpVeQAuZLL7Ai3OcA==","secondaryReadonlyMasterKey":"OtCAP3lLNKHCDhdMsgTLD4xNvGyxNZgaoSbb7pr0yQNfeCUTaA8LelkCtHlQv0v5sLgbwl0KpBLKnjn4UTkwYg=="}' headers: cache-control: - no-store, no-cache @@ -2018,7 +2904,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:02 GMT + - Thu, 18 Jun 2020 20:20:47 GMT pragma: - no-cache server: @@ -2032,9 +2918,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: Ok @@ -2052,31 +2938,31 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:03 GMT + - Thu, 18 Jun 2020 20:20:46 GMT pragma: - no-cache server: @@ -2090,7 +2976,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2108,11 +2994,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:03 GMT + - Thu, 18 Jun 2020 20:20:47 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -2125,16 +3011,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clicdevlgqplgat.documents.azure.com/ + - https://cliauoc6ozpvytv.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:03 GMT + - Thu, 18 Jun 2020 20:20:47 GMT pragma: - no-cache server: @@ -2150,7 +3036,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -2172,11 +3058,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:03 GMT + - Thu, 18 Jun 2020 20:20:48 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -2185,18 +3071,18 @@ interactions: uri: https://cli000003-westus.documents.azure.com/dbs response: body: - string: '{"_rid":"","Databases":[{"id":"cli000002","_rid":"XQszAA==","_self":"dbs\/XQszAA==\/","_etag":"\"00009302-0000-0700-0000-5df03f8c0000\"","_colls":"colls\/","_users":"users\/","_ts":1576025996}],"_count":1}' + string: '{"_rid":"","Databases":[{"id":"cli000002","_rid":"QgoJAA==","_self":"dbs\/QgoJAA==\/","_etag":"\"0000ce04-0000-0700-0000-5eebcc980000\"","_colls":"colls\/","_users":"users\/","_ts":1592511640}],"_count":1}' headers: cache-control: - no-store, no-cache content-location: - - https://clicdevlgqplgat-westus.documents.azure.com/dbs + - https://cliauoc6ozpvytv-westus.documents.azure.com/dbs content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:03 GMT + - Thu, 18 Jun 2020 20:20:47 GMT lsn: - - '4' + - '6' pragma: - no-cache server: @@ -2206,17 +3092,17 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 52eb1d0c-1623-4d16-801a-ed7bb902ea53 + - 2fa0450a-708d-4e2b-a90c-013243b2a862 x-ms-cosmos-llsn: - - '4' + - '6' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '4' + - '6' x-ms-item-count: - '1' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 19:24:36.963 GMT + - Thu, 18 Jun 2020 19:05:40.751 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -2228,11 +3114,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#4 + - 0:-1#6 x-ms-transport-request-id: - - '15986' + - '54526' x-ms-xp-role: - '1' status: @@ -2252,17 +3138,17 @@ interactions: Content-Length: - '0' ParameterSetName: - - -g -n -d + - -g -n -d --yes User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"P0BKDIwxPjVlRQDVlZ7Xq6VuGqjfdlsUUWXJ85nTqzwCAJ6fJZzP7xyG4WSfrRY2FMBQJyhmUrcrqrmXB68OEw==","secondaryMasterKey":"0EzpzqxoowdbyqnmtVplCgV1vdnyS0FT920XBSpwl0LH4Jh0XPT94GtkQUn0BclhZzCwUnplvo3Qnsg2WnDQJA==","primaryReadonlyMasterKey":"JLPK1SF842EtYdzYNDTtLhAfhEtKgL1FjLwXwiAv8GEbFroqyWUvCQvLncKyonnGI8KGKfKlCh4vbjZEuifXsA==","secondaryReadonlyMasterKey":"SIvjeFVeZ2zVZM1HvVbcG5xaHdSvreXT8FrQ0J6ASOHIlgovFtu9KbkzvmSgevRZIVzwGl42HKXFNCECy1MjmA=="}' + string: '{"primaryMasterKey":"rWUUDKr5wXcnVw0ObYzZpj4batKAJucKTxjf3PHifO48auYBaXOuBMfhQa9tFqvW6BNWti2JyMteIlNSEYQWKA==","secondaryMasterKey":"olOTdCjc6RY4oj1VDhw57FFlwbd9ku40rN3LpYsfOF1dBSHZNaaM3txXzVm6vcLnk6WZto92Hs4VqsPWGdmbaQ==","primaryReadonlyMasterKey":"uRLcwHYY13cDY9FNHDJsghkzjA00aQWW8WoUDkDEEkmIUzCFasB9chGwEeDNyvJD67AY7WpVeQAuZLL7Ai3OcA==","secondaryReadonlyMasterKey":"OtCAP3lLNKHCDhdMsgTLD4xNvGyxNZgaoSbb7pr0yQNfeCUTaA8LelkCtHlQv0v5sLgbwl0KpBLKnjn4UTkwYg=="}' headers: cache-control: - no-store, no-cache @@ -2271,7 +3157,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:04 GMT + - Thu, 18 Jun 2020 20:20:48 GMT pragma: - no-cache server: @@ -2285,7 +3171,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2303,33 +3189,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n -d + - -g -n -d --yes User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:04 GMT + - Thu, 18 Jun 2020 20:20:49 GMT pragma: - no-cache server: @@ -2343,7 +3229,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2361,11 +3247,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:04 GMT + - Thu, 18 Jun 2020 20:20:49 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -2378,16 +3264,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clicdevlgqplgat.documents.azure.com/ + - https://cliauoc6ozpvytv.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:05 GMT + - Thu, 18 Jun 2020 20:20:49 GMT pragma: - no-cache server: @@ -2403,7 +3289,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -2425,11 +3311,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:05 GMT + - Thu, 18 Jun 2020 20:20:49 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -2445,13 +3331,13 @@ interactions: content-length: - '0' content-location: - - https://clicdevlgqplgat-westus.documents.azure.com/dbs/clittwezj3wg4nn/ + - https://cliauoc6ozpvytv-westus.documents.azure.com/dbs/clivgell4fqn2gw/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:06 GMT + - Thu, 18 Jun 2020 20:20:49 GMT lsn: - - '5' + - '7' pragma: - no-cache server: @@ -2459,25 +3345,25 @@ interactions: strict-transport-security: - max-age=31536000 x-ms-activity-id: - - 10464766-9966-49fd-9ac7-6ce085e79773 + - 2e8b3309-21b9-47a2-9b5f-295517390064 x-ms-cosmos-llsn: - - '5' + - '7' x-ms-cosmos-quorum-acked-llsn: - - '4' + - '6' x-ms-current-replica-set-size: - '4' x-ms-current-write-quorum: - '3' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '4' + - '6' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 23:53:37.894 GMT + - Thu, 18 Jun 2020 19:24:10.630 GMT x-ms-number-of-read-regions: - '0' x-ms-quorum-acked-lsn: - - '4' + - '6' x-ms-request-charge: - '4.95' x-ms-resource-quota: @@ -2487,11 +3373,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#5 + - 0:-1#7 x-ms-transport-request-id: - - '10945' + - '65607' x-ms-xp-role: - '1' status: @@ -2513,15 +3399,15 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"P0BKDIwxPjVlRQDVlZ7Xq6VuGqjfdlsUUWXJ85nTqzwCAJ6fJZzP7xyG4WSfrRY2FMBQJyhmUrcrqrmXB68OEw==","secondaryMasterKey":"0EzpzqxoowdbyqnmtVplCgV1vdnyS0FT920XBSpwl0LH4Jh0XPT94GtkQUn0BclhZzCwUnplvo3Qnsg2WnDQJA==","primaryReadonlyMasterKey":"JLPK1SF842EtYdzYNDTtLhAfhEtKgL1FjLwXwiAv8GEbFroqyWUvCQvLncKyonnGI8KGKfKlCh4vbjZEuifXsA==","secondaryReadonlyMasterKey":"SIvjeFVeZ2zVZM1HvVbcG5xaHdSvreXT8FrQ0J6ASOHIlgovFtu9KbkzvmSgevRZIVzwGl42HKXFNCECy1MjmA=="}' + string: '{"primaryMasterKey":"rWUUDKr5wXcnVw0ObYzZpj4batKAJucKTxjf3PHifO48auYBaXOuBMfhQa9tFqvW6BNWti2JyMteIlNSEYQWKA==","secondaryMasterKey":"olOTdCjc6RY4oj1VDhw57FFlwbd9ku40rN3LpYsfOF1dBSHZNaaM3txXzVm6vcLnk6WZto92Hs4VqsPWGdmbaQ==","primaryReadonlyMasterKey":"uRLcwHYY13cDY9FNHDJsghkzjA00aQWW8WoUDkDEEkmIUzCFasB9chGwEeDNyvJD67AY7WpVeQAuZLL7Ai3OcA==","secondaryReadonlyMasterKey":"OtCAP3lLNKHCDhdMsgTLD4xNvGyxNZgaoSbb7pr0yQNfeCUTaA8LelkCtHlQv0v5sLgbwl0KpBLKnjn4UTkwYg=="}' headers: cache-control: - no-store, no-cache @@ -2530,7 +3416,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:06 GMT + - Thu, 18 Jun 2020 20:20:50 GMT pragma: - no-cache server: @@ -2544,7 +3430,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2564,31 +3450,31 @@ interactions: ParameterSetName: - -g -n -d User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_databasebhoq5vl5sxgio7tzjot7etqy3mptapf5yzrzrllbzxctfaumv/providers/Microsoft.DocumentDB/databaseAccounts/clicdevlgqplgat?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_databaseg4buicdpy5rgy4uk5p5nt6zykvuy4vdra3z2tc7z6bphify6y/providers/Microsoft.DocumentDB/databaseAccounts/cliauoc6ozpvytv?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:07 GMT + - Thu, 18 Jun 2020 20:20:51 GMT pragma: - no-cache server: @@ -2602,7 +3488,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2620,11 +3506,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:07 GMT + - Thu, 18 Jun 2020 20:20:52 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -2637,16 +3523,16 @@ interactions: body: string: '{"_self":"","id":"cli000003","_rid":"cli000003.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000003-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://clicdevlgqplgat.documents.azure.com/ + - https://cliauoc6ozpvytv.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:07 GMT + - Thu, 18 Jun 2020 20:20:52 GMT pragma: - no-cache server: @@ -2662,7 +3548,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -2671,7 +3557,7 @@ interactions: code: 200 message: Ok - request: - body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"clittwezj3wg4nn"}]}' + body: '{"query":"SELECT * FROM root r WHERE r.id=@id","parameters":[{"name":"@id","value":"clivgell4fqn2gw"}]}' headers: Accept: - application/json @@ -2686,11 +3572,11 @@ interactions: Content-Type: - application/query+json User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:00:07 GMT + - Thu, 18 Jun 2020 20:20:52 GMT x-ms-documentdb-isquery: - 'true' x-ms-documentdb-query-iscontinuationexpected: @@ -2708,9 +3594,9 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:07 GMT + - Thu, 18 Jun 2020 20:20:52 GMT lsn: - - '5' + - '7' pragma: - no-cache server: @@ -2720,17 +3606,19 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 7453f207-5507-496d-877d-7b9abb30ce39 + - 98e85edf-78db-49cf-97bf-77bed450698f x-ms-cosmos-llsn: - - '5' + - '7' + x-ms-cosmos-query-execution-info: + - '{"reverseRidEnabled":true,"reverseIndexScan":false}' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '5' + - '7' x-ms-item-count: - '0' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:02:14.649 GMT + - Thu, 18 Jun 2020 19:05:40.751 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -2742,11 +3630,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#5 + - 0:-1#7 x-ms-transport-request-id: - - '7108' + - '54286' x-ms-xp-role: - '1' status: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml index 88fb8ccf09e..7df8565b99d 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_database.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_database000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001","name":"cli_test_cosmosdb_gremlin_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-18T20:18:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001","name":"cli_test_cosmosdb_gremlin_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 20:18:59 GMT + - Thu, 18 Jun 2020 20:03:47 GMT expires: - '-1' pragma: @@ -47,7 +47,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}]}}' + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], + "apiProperties": {}}}' headers: Accept: - application/json @@ -58,42 +59,42 @@ interactions: Connection: - keep-alive Content-Length: - - '243' + - '264' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1513' + - '1560' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:04 GMT + - Thu, 18 Jun 2020 20:03:52 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 pragma: - no-cache server: @@ -109,7 +110,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 200 message: Ok @@ -127,10 +128,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -140,11 +141,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:34 GMT + - Thu, 18 Jun 2020 20:04:22 GMT pragma: - no-cache server: @@ -176,10 +177,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -189,11 +190,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:04 GMT + - Thu, 18 Jun 2020 20:04:53 GMT pragma: - no-cache server: @@ -225,10 +226,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -238,11 +239,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:34 GMT + - Thu, 18 Jun 2020 20:05:24 GMT pragma: - no-cache server: @@ -274,10 +275,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -287,11 +288,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:04 GMT + - Thu, 18 Jun 2020 20:05:54 GMT pragma: - no-cache server: @@ -323,10 +324,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -336,11 +337,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:35 GMT + - Thu, 18 Jun 2020 20:06:24 GMT pragma: - no-cache server: @@ -372,10 +373,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -385,11 +386,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:06 GMT + - Thu, 18 Jun 2020 20:06:54 GMT pragma: - no-cache server: @@ -421,10 +422,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -434,11 +435,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:36 GMT + - Thu, 18 Jun 2020 20:07:24 GMT pragma: - no-cache server: @@ -470,10 +471,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -483,11 +484,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:06 GMT + - Thu, 18 Jun 2020 20:07:55 GMT pragma: - no-cache server: @@ -519,10 +520,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -532,11 +533,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:36 GMT + - Thu, 18 Jun 2020 20:08:25 GMT pragma: - no-cache server: @@ -568,10 +569,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -581,11 +582,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:07 GMT + - Thu, 18 Jun 2020 20:08:55 GMT pragma: - no-cache server: @@ -617,10 +618,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -630,11 +631,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:37 GMT + - Thu, 18 Jun 2020 20:09:26 GMT pragma: - no-cache server: @@ -666,10 +667,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -679,11 +680,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:07 GMT + - Thu, 18 Jun 2020 20:09:56 GMT pragma: - no-cache server: @@ -715,10 +716,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -728,11 +729,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:37 GMT + - Thu, 18 Jun 2020 20:10:26 GMT pragma: - no-cache server: @@ -764,10 +765,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -777,11 +778,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:07 GMT + - Thu, 18 Jun 2020 20:10:56 GMT pragma: - no-cache server: @@ -813,10 +814,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -826,11 +827,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:38 GMT + - Thu, 18 Jun 2020 20:11:26 GMT pragma: - no-cache server: @@ -862,10 +863,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -875,11 +876,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:09 GMT + - Thu, 18 Jun 2020 20:11:57 GMT pragma: - no-cache server: @@ -911,10 +912,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -924,11 +925,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:39 GMT + - Thu, 18 Jun 2020 20:12:28 GMT pragma: - no-cache server: @@ -960,10 +961,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -973,11 +974,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:09 GMT + - Thu, 18 Jun 2020 20:12:58 GMT pragma: - no-cache server: @@ -1009,10 +1010,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1022,11 +1023,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:40 GMT + - Thu, 18 Jun 2020 20:13:28 GMT pragma: - no-cache server: @@ -1058,10 +1059,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1071,11 +1072,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:10 GMT + - Thu, 18 Jun 2020 20:13:59 GMT pragma: - no-cache server: @@ -1107,10 +1108,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1120,11 +1121,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:40 GMT + - Thu, 18 Jun 2020 20:14:28 GMT pragma: - no-cache server: @@ -1156,10 +1157,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1169,11 +1170,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:10 GMT + - Thu, 18 Jun 2020 20:14:59 GMT pragma: - no-cache server: @@ -1205,10 +1206,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1218,11 +1219,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:41 GMT + - Thu, 18 Jun 2020 20:15:30 GMT pragma: - no-cache server: @@ -1254,10 +1255,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1267,11 +1268,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:11 GMT + - Thu, 18 Jun 2020 20:16:00 GMT pragma: - no-cache server: @@ -1303,10 +1304,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1316,11 +1317,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:41 GMT + - Thu, 18 Jun 2020 20:16:31 GMT pragma: - no-cache server: @@ -1352,10 +1353,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1365,11 +1366,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:11 GMT + - Thu, 18 Jun 2020 20:17:01 GMT pragma: - no-cache server: @@ -1401,10 +1402,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1414,11 +1415,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:42 GMT + - Thu, 18 Jun 2020 20:17:31 GMT pragma: - no-cache server: @@ -1450,10 +1451,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1463,11 +1464,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:12 GMT + - Thu, 18 Jun 2020 20:18:02 GMT pragma: - no-cache server: @@ -1499,10 +1500,304 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:18:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:21:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1512,11 +1807,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d23ce42d-79c1-448b-af89-3a8c75983ec0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/834e0a0f-9156-4222-8167-e04a4d18be5b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:42 GMT + - Thu, 18 Jun 2020 20:21:35 GMT pragma: - no-cache server: @@ -1548,30 +1843,30 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1892' + - '1939' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:42 GMT + - Thu, 18 Jun 2020 20:21:35 GMT pragma: - no-cache server: @@ -1603,32 +1898,32 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","gremlinEndpoint":"https://cli000003.gremlin.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1892' + - '1939' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:42 GMT + - Thu, 18 Jun 2020 20:21:36 GMT pragma: - no-cache server: @@ -1660,27 +1955,27 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: ddfb7d9f-9946-11ea-969c-a08cfdd714a6, - Request URI: /apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/584cc28c-4b62-4084-8f45-b890b240c877/partitions/473d2b30-1efd-451c-86d9-491260c7637b/replicas/132342944474422833s, - RequestStats: \\r\\nRequestStartTime: 2020-05-18T20:33:45.0788382Z, RequestEndTime: - 2020-05-18T20:33:45.0788382Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-05-18T20:33:45.0788382Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.17:11300/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/584cc28c-4b62-4084-8f45-b890b240c877/partitions/473d2b30-1efd-451c-86d9-491260c7637b/replicas/132342944474422833s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 4f036753-b1a1-11ea-9161-b46bfc3d8f4d, + Request URI: /apps/a838b6b5-36e0-43c6-8479-9b6c837000ca/services/7d2130b8-b025-4c00-8443-360f181cbe39/partitions/04b49827-1d01-4c38-baa5-d50d96ad5479/replicas/132369578580672141s, + RequestStats: \\r\\nRequestStartTime: 2020-06-18T20:21:37.0438420Z, RequestEndTime: + 2020-06-18T20:21:37.0438420Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-06-18T20:21:37.0438420Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11000/apps/a838b6b5-36e0-43c6-8479-9b6c837000ca/services/7d2130b8-b025-4c00-8443-360f181cbe39/partitions/04b49827-1d01-4c38-baa5-d50d96ad5479/replicas/132369578580672141s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: - Read\\r\\nResponseTime: 2020-05-18T20:33:45.0788382Z, StoreResult: StorePhysicalAddress: - rntbd://10.0.0.26:11000/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/584cc28c-4b62-4084-8f45-b890b240c877/partitions/473d2b30-1efd-451c-86d9-491260c7637b/replicas/132343075674830183s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + Read\\r\\nResponseTime: 2020-06-18T20:21:37.0438420Z, StoreResult: StorePhysicalAddress: + rntbd://10.0.0.25:11300/apps/a838b6b5-36e0-43c6-8479-9b6c837000ca/services/7d2130b8-b025-4c00-8443-360f181cbe39/partitions/04b49827-1d01-4c38-baa5-d50d96ad5479/replicas/132369571046256719s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -1690,11 +1985,11 @@ interactions: content-length: - '1706' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa/gremlinDatabases/cliaospmsyiw3ea?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta/gremlinDatabases/clihjqwa73ym3eu?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:44 GMT + - Thu, 18 Jun 2020 20:21:36 GMT pragma: - no-cache server: @@ -1726,30 +2021,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cb7a855f-be18-47b2-ae28-9ef61ffe60c2?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f4402d81-b6af-419d-acd9-5d4ee7b32d14?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa/gremlinDatabases/cliaospmsyiw3ea?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta/gremlinDatabases/clihjqwa73ym3eu?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:45 GMT + - Thu, 18 Jun 2020 20:21:37 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002/operationResults/cb7a855f-be18-47b2-ae28-9ef61ffe60c2?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002/operationResults/f4402d81-b6af-419d-acd9-5d4ee7b32d14?api-version=2020-04-01 pragma: - no-cache server: @@ -1779,10 +2074,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cb7a855f-be18-47b2-ae28-9ef61ffe60c2?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f4402d81-b6af-419d-acd9-5d4ee7b32d14?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1792,11 +2087,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cb7a855f-be18-47b2-ae28-9ef61ffe60c2?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f4402d81-b6af-419d-acd9-5d4ee7b32d14?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:16 GMT + - Thu, 18 Jun 2020 20:22:07 GMT pragma: - no-cache server: @@ -1828,24 +2123,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"vWM9AA==","_self":"dbs/vWM9AA==/","_etag":"\"0000c000-0000-0700-0000-5ec2f12e0000\"","_colls":"colls/","_users":"users/","_ts":1589834030}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"QgMtAA==","_self":"dbs/QgMtAA==/","_etag":"\"0000ad08-0000-0700-0000-5eebccd60000\"","_colls":"colls/","_users":"users/","_ts":1592511702}}}' headers: cache-control: - no-store, no-cache content-length: - '534' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa/gremlinDatabases/cliaospmsyiw3ea?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta/gremlinDatabases/clihjqwa73ym3eu?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:17 GMT + - Thu, 18 Jun 2020 20:22:08 GMT pragma: - no-cache server: @@ -1877,26 +2172,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"vWM9AA==","_self":"dbs/vWM9AA==/","_etag":"\"0000c000-0000-0700-0000-5ec2f12e0000\"","_colls":"colls/","_users":"users/","_ts":1589834030}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"QgMtAA==","_self":"dbs/QgMtAA==/","_etag":"\"0000ad08-0000-0700-0000-5eebccd60000\"","_colls":"colls/","_users":"users/","_ts":1592511702}}}' headers: cache-control: - no-store, no-cache content-length: - '534' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa/gremlinDatabases/cliaospmsyiw3ea?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta/gremlinDatabases/clihjqwa73ym3eu?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:18 GMT + - Thu, 18 Jun 2020 20:22:10 GMT pragma: - no-cache server: @@ -1928,26 +2223,26 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"vWM9AA==","_self":"dbs/vWM9AA==/","_etag":"\"0000c000-0000-0700-0000-5ec2f12e0000\"","_colls":"colls/","_users":"users/","_ts":1589834030}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"QgMtAA==","_self":"dbs/QgMtAA==/","_etag":"\"0000ad08-0000-0700-0000-5eebccd60000\"","_colls":"colls/","_users":"users/","_ts":1592511702}}}]}' headers: cache-control: - no-store, no-cache content-length: - '546' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa/gremlinDatabases?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta/gremlinDatabases?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:19 GMT + - Thu, 18 Jun 2020 20:22:11 GMT pragma: - no-cache server: @@ -1979,26 +2274,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"vWM9AA==","_self":"dbs/vWM9AA==/","_etag":"\"0000c000-0000-0700-0000-5ec2f12e0000\"","_colls":"colls/","_users":"users/","_ts":1589834030}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"QgMtAA==","_self":"dbs/QgMtAA==/","_etag":"\"0000ad08-0000-0700-0000-5eebccd60000\"","_colls":"colls/","_users":"users/","_ts":1592511702}}}' headers: cache-control: - no-store, no-cache content-length: - '534' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa/gremlinDatabases/cliaospmsyiw3ea?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta/gremlinDatabases/clihjqwa73ym3eu?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:21 GMT + - Thu, 18 Jun 2020 20:22:11 GMT pragma: - no-cache server: @@ -2032,30 +2327,30 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3a52a0d8-a3a2-45bb-8891-4c362387f21d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8ae1bd83-3cc6-4426-a811-1c6a18532d7a?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa/gremlinDatabases/cliaospmsyiw3ea?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta/gremlinDatabases/clihjqwa73ym3eu?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:22 GMT + - Thu, 18 Jun 2020 20:22:13 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002/operationResults/3a52a0d8-a3a2-45bb-8891-4c362387f21d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases/cli000002/operationResults/8ae1bd83-3cc6-4426-a811-1c6a18532d7a?api-version=2020-04-01 pragma: - no-cache server: @@ -2085,10 +2380,10 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3a52a0d8-a3a2-45bb-8891-4c362387f21d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8ae1bd83-3cc6-4426-a811-1c6a18532d7a?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2098,11 +2393,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3a52a0d8-a3a2-45bb-8891-4c362387f21d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8ae1bd83-3cc6-4426-a811-1c6a18532d7a?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:53 GMT + - Thu, 18 Jun 2020 20:22:43 GMT pragma: - no-cache server: @@ -2134,12 +2429,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/gremlinDatabases?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -2149,11 +2444,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_databaseypzcwiavrakb4robpafjut6h7ahrxldjjsymrewff/providers/Microsoft.DocumentDB/databaseAccounts/cliqrw6rd7j5lpa/gremlinDatabases?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_databaseoievqkgud2xvurun7rn6uabvb5xf37zazhe5wfpoj/providers/Microsoft.DocumentDB/databaseAccounts/clic3chzutr64ta/gremlinDatabases?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:54 GMT + - Thu, 18 Jun 2020 20:22:46 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml index ac2fc0a9658..3016835fd2f 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_graph.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_graph000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001","name":"cli_test_cosmosdb_gremlin_graph000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-18T20:18:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001","name":"cli_test_cosmosdb_gremlin_graph000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 20:19:00 GMT + - Thu, 18 Jun 2020 20:03:46 GMT expires: - '-1' pragma: @@ -47,7 +47,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}]}}' + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], + "apiProperties": {}}}' headers: Accept: - application/json @@ -58,42 +59,42 @@ interactions: Connection: - keep-alive Content-Length: - - '243' + - '264' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1513' + - '1560' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:05 GMT + - Thu, 18 Jun 2020 20:03:52 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 pragma: - no-cache server: @@ -109,7 +110,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: Ok @@ -127,10 +128,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -140,11 +141,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:35 GMT + - Thu, 18 Jun 2020 20:04:23 GMT pragma: - no-cache server: @@ -176,10 +177,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -189,11 +190,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:06 GMT + - Thu, 18 Jun 2020 20:04:53 GMT pragma: - no-cache server: @@ -225,10 +226,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -238,11 +239,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:36 GMT + - Thu, 18 Jun 2020 20:05:23 GMT pragma: - no-cache server: @@ -274,10 +275,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -287,11 +288,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:06 GMT + - Thu, 18 Jun 2020 20:05:53 GMT pragma: - no-cache server: @@ -323,10 +324,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -336,11 +337,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:36 GMT + - Thu, 18 Jun 2020 20:06:24 GMT pragma: - no-cache server: @@ -372,10 +373,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -385,11 +386,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:07 GMT + - Thu, 18 Jun 2020 20:06:54 GMT pragma: - no-cache server: @@ -421,10 +422,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -434,11 +435,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:37 GMT + - Thu, 18 Jun 2020 20:07:24 GMT pragma: - no-cache server: @@ -470,10 +471,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -483,11 +484,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:07 GMT + - Thu, 18 Jun 2020 20:07:54 GMT pragma: - no-cache server: @@ -519,10 +520,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -532,11 +533,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:37 GMT + - Thu, 18 Jun 2020 20:08:25 GMT pragma: - no-cache server: @@ -568,10 +569,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -581,11 +582,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:08 GMT + - Thu, 18 Jun 2020 20:08:56 GMT pragma: - no-cache server: @@ -617,10 +618,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -630,11 +631,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:38 GMT + - Thu, 18 Jun 2020 20:09:25 GMT pragma: - no-cache server: @@ -666,10 +667,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -679,11 +680,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:08 GMT + - Thu, 18 Jun 2020 20:09:57 GMT pragma: - no-cache server: @@ -715,10 +716,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -728,11 +729,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:38 GMT + - Thu, 18 Jun 2020 20:10:27 GMT pragma: - no-cache server: @@ -764,10 +765,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -777,11 +778,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:09 GMT + - Thu, 18 Jun 2020 20:10:57 GMT pragma: - no-cache server: @@ -813,10 +814,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -826,11 +827,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:39 GMT + - Thu, 18 Jun 2020 20:11:27 GMT pragma: - no-cache server: @@ -862,10 +863,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -875,11 +876,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:09 GMT + - Thu, 18 Jun 2020 20:11:58 GMT pragma: - no-cache server: @@ -911,10 +912,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -924,11 +925,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:39 GMT + - Thu, 18 Jun 2020 20:12:28 GMT pragma: - no-cache server: @@ -960,10 +961,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -973,11 +974,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:10 GMT + - Thu, 18 Jun 2020 20:12:59 GMT pragma: - no-cache server: @@ -1009,10 +1010,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1022,11 +1023,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:41 GMT + - Thu, 18 Jun 2020 20:13:29 GMT pragma: - no-cache server: @@ -1058,10 +1059,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1071,11 +1072,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:11 GMT + - Thu, 18 Jun 2020 20:13:59 GMT pragma: - no-cache server: @@ -1107,10 +1108,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1120,11 +1121,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:41 GMT + - Thu, 18 Jun 2020 20:14:30 GMT pragma: - no-cache server: @@ -1156,10 +1157,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1169,11 +1170,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:12 GMT + - Thu, 18 Jun 2020 20:15:00 GMT pragma: - no-cache server: @@ -1205,10 +1206,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1218,11 +1219,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:42 GMT + - Thu, 18 Jun 2020 20:15:30 GMT pragma: - no-cache server: @@ -1254,10 +1255,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1267,11 +1268,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:12 GMT + - Thu, 18 Jun 2020 20:16:01 GMT pragma: - no-cache server: @@ -1303,10 +1304,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1316,11 +1317,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:42 GMT + - Thu, 18 Jun 2020 20:16:31 GMT pragma: - no-cache server: @@ -1352,10 +1353,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1365,11 +1366,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:13 GMT + - Thu, 18 Jun 2020 20:17:02 GMT pragma: - no-cache server: @@ -1401,10 +1402,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1414,11 +1415,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:43 GMT + - Thu, 18 Jun 2020 20:17:32 GMT pragma: - no-cache server: @@ -1450,10 +1451,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1463,11 +1464,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:13 GMT + - Thu, 18 Jun 2020 20:18:02 GMT pragma: - no-cache server: @@ -1499,10 +1500,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1512,11 +1513,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:43 GMT + - Thu, 18 Jun 2020 20:18:32 GMT pragma: - no-cache server: @@ -1548,10 +1549,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1561,11 +1562,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:13 GMT + - Thu, 18 Jun 2020 20:19:05 GMT pragma: - no-cache server: @@ -1597,10 +1598,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1610,11 +1611,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:44 GMT + - Thu, 18 Jun 2020 20:19:35 GMT pragma: - no-cache server: @@ -1646,10 +1647,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1659,11 +1660,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:14 GMT + - Thu, 18 Jun 2020 20:20:05 GMT pragma: - no-cache server: @@ -1695,10 +1696,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1708,11 +1709,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f432e54c-d073-4870-ad9f-39f350dcd23d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0567f4b5-f6f7-4f5e-a520-722d469a9bd7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:44 GMT + - Thu, 18 Jun 2020 20:20:35 GMT pragma: - no-cache server: @@ -1744,30 +1745,30 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1892' + - '1939' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:44 GMT + - Thu, 18 Jun 2020 20:20:36 GMT pragma: - no-cache server: @@ -1799,32 +1800,32 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","gremlinEndpoint":"https://cli000004.gremlin.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1892' + - '1939' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:45 GMT + - Thu, 18 Jun 2020 20:20:37 GMT pragma: - no-cache server: @@ -1860,30 +1861,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b7c0b41-c984-42c4-a93a-5e65c760f17a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10f135f3-b904-4af9-b671-a9aa766cda42?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:46 GMT + - Thu, 18 Jun 2020 20:20:38 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/1b7c0b41-c984-42c4-a93a-5e65c760f17a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/operationResults/10f135f3-b904-4af9-b671-a9aa766cda42?api-version=2020-04-01 pragma: - no-cache server: @@ -1895,7 +1896,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1913,10 +1914,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b7c0b41-c984-42c4-a93a-5e65c760f17a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10f135f3-b904-4af9-b671-a9aa766cda42?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1926,11 +1927,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1b7c0b41-c984-42c4-a93a-5e65c760f17a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/10f135f3-b904-4af9-b671-a9aa766cda42?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:17 GMT + - Thu, 18 Jun 2020 20:21:09 GMT pragma: - no-cache server: @@ -1962,24 +1963,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"ETsPAA==","_self":"dbs/ETsPAA==/","_etag":"\"00001501-0000-0700-0000-5ec2f1a70000\"","_colls":"colls/","_users":"users/","_ts":1589834151}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"m3IMAA==","_self":"dbs/m3IMAA==/","_etag":"\"0000b603-0000-0700-0000-5eebcc9c0000\"","_colls":"colls/","_users":"users/","_ts":1592511644}}}' headers: cache-control: - no-store, no-cache content-length: - '534' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:18 GMT + - Thu, 18 Jun 2020 20:21:10 GMT pragma: - no-cache server: @@ -2011,27 +2012,27 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-04-01 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 3a870c0e-9947-11ea-89cc-a08cfdd714a6, - Request URI: /apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/4d0efe90-42c4-4aad-99f5-b3337ebd97ce/partitions/ce6e645e-09ee-47dc-9be3-fab8c23ea711/replicas/132343071555723101s, - RequestStats: \\r\\nRequestStartTime: 2020-05-18T20:36:20.2189104Z, RequestEndTime: - 2020-05-18T20:36:20.2189104Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-05-18T20:36:20.2189104Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.14:11000/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/4d0efe90-42c4-4aad-99f5-b3337ebd97ce/partitions/ce6e645e-09ee-47dc-9be3-fab8c23ea711/replicas/132343071555723101s, - LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, + {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 404c146e-b1a1-11ea-9138-b46bfc3d8f4d, + Request URI: /apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/78a856ce-c019-4e9e-9f59-2d202d5035e4/partitions/bca47c14-7d87-402b-bbf6-fd18e37bdb3d/replicas/132368919501164039s, + RequestStats: \\r\\nRequestStartTime: 2020-06-18T20:21:12.3402131Z, RequestEndTime: + 2020-06-18T20:21:12.3402131Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-06-18T20:21:12.3402131Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/78a856ce-c019-4e9e-9f59-2d202d5035e4/partitions/bca47c14-7d87-402b-bbf6-fd18e37bdb3d/replicas/132368919501164039s, + LSN: 6, GlobalCommittedLsn: 6, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#6, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, - OperationType: Read\\r\\nResponseTime: 2020-05-18T20:36:20.2189104Z, StoreResult: - StorePhysicalAddress: rntbd://10.0.0.15:11000/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/4d0efe90-42c4-4aad-99f5-b3337ebd97ce/partitions/ce6e645e-09ee-47dc-9be3-fab8c23ea711/replicas/132343075674830183s, - LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, + OperationType: Read\\r\\nResponseTime: 2020-06-18T20:21:12.3402131Z, StoreResult: + StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/78a856ce-c019-4e9e-9f59-2d202d5035e4/partitions/bca47c14-7d87-402b-bbf6-fd18e37bdb3d/replicas/132369460927519586s, + LSN: 6, GlobalCommittedLsn: 6, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#6, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -2041,11 +2042,11 @@ interactions: content-length: - '1732' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs/cli5fk6uqxj2kot?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs/clip67s22rxvavc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:19 GMT + - Thu, 18 Jun 2020 20:21:11 GMT pragma: - no-cache server: @@ -2081,30 +2082,30 @@ interactions: ParameterSetName: - -g -a -d -n -p --ttl --conflict-resolution-policy --idx User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/edbcd33f-ca88-4aa6-afaa-8c43f1259b38?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f5f049a-2f59-40eb-82d2-61176752c57e?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs/cli5fk6uqxj2kot?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs/clip67s22rxvavc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:20 GMT + - Thu, 18 Jun 2020 20:21:13 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/edbcd33f-ca88-4aa6-afaa-8c43f1259b38?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/9f5f049a-2f59-40eb-82d2-61176752c57e?api-version=2020-04-01 pragma: - no-cache server: @@ -2116,7 +2117,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 202 message: Accepted @@ -2134,10 +2135,10 @@ interactions: ParameterSetName: - -g -a -d -n -p --ttl --conflict-resolution-policy --idx User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/edbcd33f-ca88-4aa6-afaa-8c43f1259b38?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f5f049a-2f59-40eb-82d2-61176752c57e?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2147,11 +2148,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/edbcd33f-ca88-4aa6-afaa-8c43f1259b38?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9f5f049a-2f59-40eb-82d2-61176752c57e?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:50 GMT + - Thu, 18 Jun 2020 20:21:44 GMT pragma: - no-cache server: @@ -2183,24 +2184,24 @@ interactions: ParameterSetName: - -g -a -d -n -p --ttl --conflict-resolution-policy --idx User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"ETsPAI-lUYY=","_ts":1589834185,"_self":"dbs/ETsPAA==/colls/ETsPAI-lUYY=/","_etag":"\"00001801-0000-0700-0000-5ec2f1c90000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"m3IMAIcevZA=","_ts":1592511678,"_self":"dbs/m3IMAA==/colls/m3IMAIcevZA=/","_etag":"\"0000b803-0000-0700-0000-5eebccbe0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1177' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs/cli5fk6uqxj2kot?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs/clip67s22rxvavc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:51 GMT + - Thu, 18 Jun 2020 20:21:44 GMT pragma: - no-cache server: @@ -2232,26 +2233,26 @@ interactions: ParameterSetName: - -g -a -d -n --ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"ETsPAI-lUYY=","_ts":1589834185,"_self":"dbs/ETsPAA==/colls/ETsPAI-lUYY=/","_etag":"\"00001801-0000-0700-0000-5ec2f1c90000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"m3IMAIcevZA=","_ts":1592511678,"_self":"dbs/m3IMAA==/colls/m3IMAIcevZA=/","_etag":"\"0000b803-0000-0700-0000-5eebccbe0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1177' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs/cli5fk6uqxj2kot?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs/clip67s22rxvavc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:53 GMT + - Thu, 18 Jun 2020 20:21:46 GMT pragma: - no-cache server: @@ -2292,30 +2293,30 @@ interactions: ParameterSetName: - -g -a -d -n --ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/407ecdd5-6155-47a1-8ea6-62780c21d55c?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1342063b-964f-43df-8e12-0d605c76a663?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs/cli5fk6uqxj2kot?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs/clip67s22rxvavc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:53 GMT + - Thu, 18 Jun 2020 20:21:47 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/407ecdd5-6155-47a1-8ea6-62780c21d55c?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/1342063b-964f-43df-8e12-0d605c76a663?api-version=2020-04-01 pragma: - no-cache server: @@ -2327,7 +2328,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -2345,10 +2346,10 @@ interactions: ParameterSetName: - -g -a -d -n --ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/407ecdd5-6155-47a1-8ea6-62780c21d55c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1342063b-964f-43df-8e12-0d605c76a663?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2358,11 +2359,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/407ecdd5-6155-47a1-8ea6-62780c21d55c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1342063b-964f-43df-8e12-0d605c76a663?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:24 GMT + - Thu, 18 Jun 2020 20:22:16 GMT pragma: - no-cache server: @@ -2394,24 +2395,24 @@ interactions: ParameterSetName: - -g -a -d -n --ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"ETsPAI-lUYY=","_ts":1589834218,"_self":"dbs/ETsPAA==/colls/ETsPAI-lUYY=/","_etag":"\"00001d01-0000-0700-0000-5ec2f1ea0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"m3IMAIcevZA=","_ts":1592511711,"_self":"dbs/m3IMAA==/colls/m3IMAIcevZA=/","_etag":"\"0000bd03-0000-0700-0000-5eebccdf0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1177' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs/cli5fk6uqxj2kot?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs/clip67s22rxvavc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:24 GMT + - Thu, 18 Jun 2020 20:22:17 GMT pragma: - no-cache server: @@ -2443,26 +2444,26 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"ETsPAI-lUYY=","_ts":1589834218,"_self":"dbs/ETsPAA==/colls/ETsPAI-lUYY=/","_etag":"\"00001d01-0000-0700-0000-5ec2f1ea0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"m3IMAIcevZA=","_ts":1592511711,"_self":"dbs/m3IMAA==/colls/m3IMAIcevZA=/","_etag":"\"0000bd03-0000-0700-0000-5eebccdf0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1177' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs/cli5fk6uqxj2kot?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs/clip67s22rxvavc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:27 GMT + - Thu, 18 Jun 2020 20:22:19 GMT pragma: - no-cache server: @@ -2494,26 +2495,26 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"ETsPAI-lUYY=","_ts":1589834218,"_self":"dbs/ETsPAA==/colls/ETsPAI-lUYY=/","_etag":"\"00001d01-0000-0700-0000-5ec2f1ea0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"m3IMAIcevZA=","_ts":1592511711,"_self":"dbs/m3IMAA==/colls/m3IMAIcevZA=/","_etag":"\"0000bd03-0000-0700-0000-5eebccdf0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}]}' headers: cache-control: - no-store, no-cache content-length: - '1113' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:28 GMT + - Thu, 18 Jun 2020 20:22:20 GMT pragma: - no-cache server: @@ -2545,26 +2546,26 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"ETsPAI-lUYY=","_ts":1589834218,"_self":"dbs/ETsPAA==/colls/ETsPAI-lUYY=/","_etag":"\"00001d01-0000-0700-0000-5ec2f1ea0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"m3IMAIcevZA=","_ts":1592511711,"_self":"dbs/m3IMAA==/colls/m3IMAIcevZA=/","_etag":"\"0000bd03-0000-0700-0000-5eebccdf0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1177' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs/cli5fk6uqxj2kot?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs/clip67s22rxvavc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:29 GMT + - Thu, 18 Jun 2020 20:22:21 GMT pragma: - no-cache server: @@ -2598,30 +2599,30 @@ interactions: ParameterSetName: - -g -a -d -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b560141-884b-48c5-9777-ad0691bac0bc?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ee6f00c0-fe24-44be-830b-530dfcfd713b?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs/cli5fk6uqxj2kot?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs/clip67s22rxvavc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:30 GMT + - Thu, 18 Jun 2020 20:22:22 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/7b560141-884b-48c5-9777-ad0691bac0bc?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs/cli000003/operationResults/ee6f00c0-fe24-44be-830b-530dfcfd713b?api-version=2020-04-01 pragma: - no-cache server: @@ -2651,10 +2652,10 @@ interactions: ParameterSetName: - -g -a -d -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b560141-884b-48c5-9777-ad0691bac0bc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ee6f00c0-fe24-44be-830b-530dfcfd713b?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2664,11 +2665,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7b560141-884b-48c5-9777-ad0691bac0bc?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ee6f00c0-fe24-44be-830b-530dfcfd713b?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:38:01 GMT + - Thu, 18 Jun 2020 20:22:53 GMT pragma: - no-cache server: @@ -2700,12 +2701,12 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_graph000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/gremlinDatabases/cli000002/graphs?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -2715,11 +2716,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_graphwm2eralzv4jutmobbyqclynrtzzgclh53kyjyoi65p7a/providers/Microsoft.DocumentDB/databaseAccounts/cli6xott7pdkmns/gremlinDatabases/cligduewzp7iy2l/graphs?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_graphtufpt77bechlnzbozjnlen6txgjv437ushj3f3ye33xz/providers/Microsoft.DocumentDB/databaseAccounts/clin575ilhd7n5k/gremlinDatabases/cliiclky7kse7ik/graphs?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:38:02 GMT + - Thu, 18 Jun 2020 20:22:55 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_resource_throughput.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_resource_throughput.yaml index 83edcbe0944..a3a511206e0 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_resource_throughput.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_gremlin_resource_throughput.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_gremlin_resource_throughput000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001","name":"cli_test_cosmosdb_gremlin_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T00:59:26Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001","name":"cli_test_cosmosdb_gremlin_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 00:59:27 GMT + - Thu, 18 Jun 2020 20:03:47 GMT expires: - '-1' pragma: @@ -47,7 +47,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}]}}' + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableGremlin"}], + "apiProperties": {}}}' headers: Accept: - application/json @@ -58,42 +59,42 @@ interactions: Connection: - keep-alive Content-Length: - - '243' + - '264' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1442' + - '1560' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 00:59:30 GMT + - Thu, 18 Jun 2020 20:03:52 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 pragma: - no-cache server: @@ -107,9 +108,744 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:04:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:04:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:06:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:06:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:07:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:07:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:08:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:08:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:09:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:09:56 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:10:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:10:56 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:11:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -127,24 +863,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:00 GMT + - Thu, 18 Jun 2020 20:11:57 GMT pragma: - no-cache server: @@ -158,7 +894,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -176,24 +912,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:00:31 GMT + - Thu, 18 Jun 2020 20:12:28 GMT pragma: - no-cache server: @@ -207,7 +943,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -225,24 +961,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:01:01 GMT + - Thu, 18 Jun 2020 20:12:58 GMT pragma: - no-cache server: @@ -256,7 +992,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -274,24 +1010,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:01:32 GMT + - Thu, 18 Jun 2020 20:13:28 GMT pragma: - no-cache server: @@ -305,7 +1041,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -323,24 +1059,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:02:02 GMT + - Thu, 18 Jun 2020 20:13:59 GMT pragma: - no-cache server: @@ -354,7 +1090,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -372,24 +1108,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:02:33 GMT + - Thu, 18 Jun 2020 20:14:29 GMT pragma: - no-cache server: @@ -403,7 +1139,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -421,24 +1157,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:03 GMT + - Thu, 18 Jun 2020 20:14:59 GMT pragma: - no-cache server: @@ -452,7 +1188,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -470,24 +1206,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:33 GMT + - Thu, 18 Jun 2020 20:15:29 GMT pragma: - no-cache server: @@ -501,7 +1237,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -519,24 +1255,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:04:04 GMT + - Thu, 18 Jun 2020 20:15:59 GMT pragma: - no-cache server: @@ -550,7 +1286,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -568,24 +1304,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:04:34 GMT + - Thu, 18 Jun 2020 20:16:29 GMT pragma: - no-cache server: @@ -599,7 +1335,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -617,24 +1353,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:05:04 GMT + - Thu, 18 Jun 2020 20:17:00 GMT pragma: - no-cache server: @@ -648,7 +1384,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -666,24 +1402,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:05:35 GMT + - Thu, 18 Jun 2020 20:17:30 GMT pragma: - no-cache server: @@ -697,7 +1433,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -715,24 +1451,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:06:05 GMT + - Thu, 18 Jun 2020 20:18:00 GMT pragma: - no-cache server: @@ -746,7 +1482,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -764,24 +1500,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:06:36 GMT + - Thu, 18 Jun 2020 20:18:31 GMT pragma: - no-cache server: @@ -795,7 +1531,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -813,24 +1549,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:07:05 GMT + - Thu, 18 Jun 2020 20:19:03 GMT pragma: - no-cache server: @@ -844,7 +1580,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -862,24 +1598,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:07:36 GMT + - Thu, 18 Jun 2020 20:19:33 GMT pragma: - no-cache server: @@ -893,7 +1629,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -911,24 +1647,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/55091484-b06d-4cf5-be26-48110e428f2c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77305027-711e-4801-9977-baca199fbd17?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:06 GMT + - Thu, 18 Jun 2020 20:20:04 GMT pragma: - no-cache server: @@ -942,7 +1678,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -960,30 +1696,30 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","gremlinEndpoint":"https://cli000002.gremlin.cosmos.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","gremlinEndpoint":"https://cli000002.gremlin.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1805' + - '1939' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:06 GMT + - Thu, 18 Jun 2020 20:20:04 GMT pragma: - no-cache server: @@ -997,7 +1733,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1015,32 +1751,32 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","gremlinEndpoint":"https://cli000002.gremlin.cosmos.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, - Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","gremlinEndpoint":"https://cli000002.gremlin.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Gremlin, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableGremlin"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1805' + - '1939' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:06 GMT + - Thu, 18 Jun 2020 20:20:05 GMT pragma: - no-cache server: @@ -1054,13 +1790,13 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok - request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"Throughput": - "1000"}}}' + body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"throughput": + 1000}}}' headers: Accept: - application/json @@ -1071,36 +1807,36 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '88' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3119f81f-40c7-4715-8fff-ece720a45c15?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6b44895-4e97-4cb1-a780-c953fd9119f3?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:07 GMT + - Thu, 18 Jun 2020 20:20:06 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/operationResults/3119f81f-40c7-4715-8fff-ece720a45c15?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/operationResults/d6b44895-4e97-4cb1-a780-c953fd9119f3?api-version=2020-04-01 pragma: - no-cache server: @@ -1110,9 +1846,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1130,24 +1866,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3119f81f-40c7-4715-8fff-ece720a45c15?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6b44895-4e97-4cb1-a780-c953fd9119f3?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3119f81f-40c7-4715-8fff-ece720a45c15?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d6b44895-4e97-4cb1-a780-c953fd9119f3?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:38 GMT + - Thu, 18 Jun 2020 20:20:37 GMT pragma: - no-cache server: @@ -1161,7 +1897,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1179,24 +1915,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"6+MdAA==","_self":"dbs/6+MdAA==/","_etag":"\"00002f02-0000-0700-0000-5df0417a0000\"","_colls":"colls/","_users":"users/","_ts":1576026490}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"HHRKAA==","_self":"dbs/HHRKAA==/","_etag":"\"00006407-0000-0700-0000-5eebcc7c0000\"","_colls":"colls/","_users":"users/","_ts":1592511612}}}' headers: cache-control: - no-store, no-cache content-length: - '534' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:38 GMT + - Thu, 18 Jun 2020 20:20:37 GMT pragma: - no-cache server: @@ -1210,7 +1946,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1228,26 +1964,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings","name":"u3I4","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings","name":"ezoD","properties":{"resource":{"throughput":1000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '469' + - '444' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:41 GMT + - Thu, 18 Jun 2020 20:20:39 GMT pragma: - no-cache server: @@ -1261,7 +1997,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1283,30 +2019,30 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/989f8ca8-49fc-4050-8daa-290b48202635?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c924a3c-cd03-4454-a4b1-a7c58b339d97?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:42 GMT + - Thu, 18 Jun 2020 20:20:41 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default/operationResults/989f8ca8-49fc-4050-8daa-290b48202635?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default/operationResults/6c924a3c-cd03-4454-a4b1-a7c58b339d97?api-version=2020-04-01 pragma: - no-cache server: @@ -1316,7 +2052,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -1336,24 +2072,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/989f8ca8-49fc-4050-8daa-290b48202635?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c924a3c-cd03-4454-a4b1-a7c58b339d97?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/989f8ca8-49fc-4050-8daa-290b48202635?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6c924a3c-cd03-4454-a4b1-a7c58b339d97?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:12 GMT + - Thu, 18 Jun 2020 20:21:11 GMT pragma: - no-cache server: @@ -1367,7 +2103,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1385,24 +2121,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings","name":"u3I4","properties":{"resource":{"throughput":2000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings","name":"ezoD","properties":{"resource":{"throughput":2000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '469' + - '444' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:13 GMT + - Thu, 18 Jun 2020 20:21:13 GMT pragma: - no-cache server: @@ -1416,7 +2152,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1424,7 +2160,7 @@ interactions: body: '{"properties": {"resource": {"id": "cli000004", "indexingPolicy": {"automatic": true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], - "kind": "Hash"}}, "options": {"Throughput": "1000"}}}' + "kind": "Hash"}}, "options": {"throughput": 1000}}}' headers: Accept: - application/json @@ -1435,36 +2171,36 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '302' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -d -n -p --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bc42019a-d0dc-4be0-8981-8f4cd076bf29?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3cfa7b9d-a3fd-48e2-8cf7-99045f837256?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg/graphs/clie7c3jslklir5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g/graphs/cli5umosqia2v6n?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:15 GMT + - Thu, 18 Jun 2020 20:21:15 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/operationResults/bc42019a-d0dc-4be0-8981-8f4cd076bf29?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/operationResults/3cfa7b9d-a3fd-48e2-8cf7-99045f837256?api-version=2020-04-01 pragma: - no-cache server: @@ -1474,9 +2210,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1494,24 +2230,24 @@ interactions: ParameterSetName: - -g -a -d -n -p --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bc42019a-d0dc-4be0-8981-8f4cd076bf29?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3cfa7b9d-a3fd-48e2-8cf7-99045f837256?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bc42019a-d0dc-4be0-8981-8f4cd076bf29?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3cfa7b9d-a3fd-48e2-8cf7-99045f837256?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:46 GMT + - Thu, 18 Jun 2020 20:21:44 GMT pragma: - no-cache server: @@ -1525,7 +2261,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1543,24 +2279,24 @@ interactions: ParameterSetName: - -g -a -d -n -p --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000004","properties":{"resource":{"id":"cli000004","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"6+MdAOx9Wts=","_ts":1576026559,"_self":"dbs/6+MdAA==/colls/6+MdAOx9Wts=/","_etag":"\"00003502-0000-0700-0000-5df041bf0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs","name":"cli000004","properties":{"resource":{"id":"cli000004","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"HHRKAJdYFd8=","_ts":1592511680,"_self":"dbs/HHRKAA==/colls/HHRKAJdYFd8=/","_etag":"\"00006a07-0000-0700-0000-5eebccc00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1121' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg/graphs/clie7c3jslklir5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g/graphs/cli5umosqia2v6n?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:47 GMT + - Thu, 18 Jun 2020 20:21:45 GMT pragma: - no-cache server: @@ -1574,7 +2310,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1592,26 +2328,26 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings","name":"RKxO","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings","name":"9hbs","properties":{"resource":{"throughput":1000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '499' + - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg/graphs/clie7c3jslklir5/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g/graphs/cli5umosqia2v6n/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:48 GMT + - Thu, 18 Jun 2020 20:21:47 GMT pragma: - no-cache server: @@ -1625,7 +2361,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1647,30 +2383,30 @@ interactions: ParameterSetName: - -g -a -d -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bea39976-2a81-4b6f-a9e8-a522b33458c3?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac142a37-535f-441f-965a-beb128abb082?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg/graphs/clie7c3jslklir5/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g/graphs/cli5umosqia2v6n/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:50 GMT + - Thu, 18 Jun 2020 20:21:48 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default/operationResults/bea39976-2a81-4b6f-a9e8-a522b33458c3?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default/operationResults/ac142a37-535f-441f-965a-beb128abb082?api-version=2020-04-01 pragma: - no-cache server: @@ -1680,9 +2416,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1700,24 +2436,24 @@ interactions: ParameterSetName: - -g -a -d -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bea39976-2a81-4b6f-a9e8-a522b33458c3?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac142a37-535f-441f-965a-beb128abb082?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bea39976-2a81-4b6f-a9e8-a522b33458c3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac142a37-535f-441f-965a-beb128abb082?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:10:21 GMT + - Thu, 18 Jun 2020 20:22:19 GMT pragma: - no-cache server: @@ -1731,7 +2467,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1749,24 +2485,24 @@ interactions: ParameterSetName: - -g -a -d -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings","name":"RKxO","properties":{"resource":{"throughput":2000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/gremlinDatabases/cli000003/graphs/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings","name":"9hbs","properties":{"resource":{"throughput":2000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '499' + - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputvlqed3qh7wbft6iacmosnycm5fwu3f/providers/Microsoft.DocumentDB/databaseAccounts/cli5bepmfdp5awb/gremlinDatabases/cliahqsrcftt2xg/graphs/clie7c3jslklir5/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_gremlin_resource_throughputcl7aknctv7o4dv7bm2kb55yxlrcohg/providers/Microsoft.DocumentDB/databaseAccounts/clifhyce7vitqya/gremlinDatabases/cliufyog3a7sh2g/graphs/cli5umosqia2v6n/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:10:22 GMT + - Thu, 18 Jun 2020 20:22:20 GMT pragma: - no-cache server: @@ -1780,7 +2516,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_key_vault_key_uri.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_key_vault_key_uri.yaml index 81d91c4b7d6..98916ea3c97 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_key_vault_key_uri.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_key_vault_key_uri.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - --resource-group -n --enable-soft-delete --enable-purge-protection User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_key_vault_key_uri000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001","name":"cli_test_cosmosdb_key_vault_key_uri000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-03-05T03:22:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001","name":"cli_test_cosmosdb_key_vault_key_uri000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 05 Mar 2020 03:22:05 GMT + - Thu, 18 Jun 2020 20:03:47 GMT expires: - '-1' pragma: @@ -54,54 +54,57 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 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":"feb99c1a-6272-4966-8240-05442405ab09","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["2f442157-a11c-46b9-ae5b-6e39ff4e5849","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","8e0c0a52-6a6c-4d40-8370-dd62790dcd70","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"dcb1a3ae-b33f-4487-846a-a640262fadf4"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"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":"2019-11-25T07:28:22Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-11-25T07:28:22Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-11-25T07:28:22Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-11-25T07:28:22Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2019-11-05T01:29:00Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T18:18:33Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T18:18:33Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-08-09T01:07:10Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T14:20:07Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-05-10T08:39:17Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2019-04-07T04:14:41Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-07T04:14:41Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-07T04:14:41Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-12-02T21:46:33Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-06T22:56:58Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-09-06T22:56:58Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"d20bfa21-e9ae-43fc-93c2-20783f0840c3"},{"assignedTimestamp":"2018-09-06T22:56:58Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"d5368ca3-357e-4acb-9c21-8495fb025d1f"},{"assignedTimestamp":"2018-09-06T22:56:58Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-06T22:46:44Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-09-01T04:14:18Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-09-01T04:14:18Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-08-17T01:15:38Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-08-17T01:15:38Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-07-12T22:44:45Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-07-12T22:44:45Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2018-07-12T22:44:45Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-06-12T22:27:53Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-06-12T22:27:52Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2018-06-06T07:23:58Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-06-06T07:23:58Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2018-06-06T07:23:58Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2018-06-06T07:23:58Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-06-06T07:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-06-06T07:23:58Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2018-06-06T07:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2018-06-06T07:23:58Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2018-06-05T19:31:29Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-06-05T19:31:29Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-06-05T19:31:28Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2018-06-05T19:31:28Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2018-06-02T17:16:19Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"}],"city":"Atlanta","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":"2018-06-01T02:06:28Z","creationType":null,"department":"COGS - Data - Cosmos DB","dirSyncEnabled":true,"displayName":"Sam Hurd","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Sam","immutableId":"1220229","isCompromised":null,"jobTitle":"SOFTWARE - ENGINEER","lastDirSyncTime":"2020-02-03T14:52:53Z","legalAgeGroupClassification":null,"mail":"Sam.Hurd@microsoft.com","mailNickname":"sahurd","mobile":null,"onPremisesDistinguishedName":"CN=Sam - Hurd,OU=UserAccounts,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-32081988","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"Home - Office","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"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":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"}],"provisioningErrors":[],"proxyAddresses":["x500:/o=ExchangeLabs/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=237fdd54e6214390b4b0320d547f1a47-Sam - Hurd","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=702b1734f35b4f1e9afc6ce59b877852-Sam - Hurd","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=cc83bde4b3684da8964fbff8e52fa5d5-Sam - Hurdd63cd988-32f","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=d3855fbe46e54f73b15ce59a5cd5ec04-Sam - Hurd","smtp:sahurd@microsoft.onmicrosoft.com","smtp:sahurd@service.microsoft.com","smtp:sahurd@microsoft.com","SMTP:Sam.Hurd@microsoft.com"],"refreshTokensValidFromDateTime":"2019-06-10T19:34:59Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"sahurd@microsoft.com","state":null,"streetAddress":null,"surname":"Hurd","telephoneNumber":"+1 - (425) 7229768","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/feb99c1a-6272-4966-8240-05442405ab09/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"US","userIdentities":[],"userPrincipalName":"sahurd@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"HOME - OFFICE","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"99999","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"221240","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Kuruvilla, - Sujit V.","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"SUJITK","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10017802","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91691150","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10017802","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1220229"}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"02bf3cc6-8649-4605-ad56-ed19c5a1c247","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":["bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","2f442157-a11c-46b9-ae5b-6e39ff4e5849","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","8e0c0a52-6a6c-4d40-8370-dd62790dcd70","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"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"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"}],"assignedPlans":[{"assignedTimestamp":"2020-06-18T11:48:33Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2020-06-18T11:48:33Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-06-18T11:48:33Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2020-06-18T11:48:33Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-06-18T11:48:33Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-06-18T11:48:33Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2019-11-05T01:42:16Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T07:22:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T07:22:21Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-08-08T23:39:41Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T20:54:55Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-04-07T11:02:20Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-07T11:02:20Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-07T11:02:20Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-12-05T14:13:39Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-12-05T14:13:39Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-11-27T05:59:57Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-11-27T05:59:57Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2018-11-01T11:23:48Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2018-11-01T04:32:55Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2018-10-31T05:20:34Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2018-10-31T05:20:34Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2018-10-31T05:20:22Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-10-31T05:20:22Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"}],"city":"Vancouver","companyName":"MS + Canada Development Ct.","consentProvidedForMinor":null,"country":null,"createdDateTime":"2018-10-30T23:22:53Z","creationType":null,"department":"R&D + Azure Data-1745","dirSyncEnabled":true,"displayName":"Meha Kaushik","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Meha","immutableId":"6016079","isCompromised":null,"jobTitle":"SOFTWARE + ENGINEER","lastDirSyncTime":"2020-02-14T10:03:11Z","legalAgeGroupClassification":null,"mail":"Meha.Kaushik@microsoft.com","mailNickname":"mekaushi","mobile":null,"onPremisesDistinguishedName":"CN=Meha + Kaushik,OU=UserAccounts,DC=northamerica,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-124525095-708259637-1543119021-1870351","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"VANCOUVER-725/7G37","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"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":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["x500:/o=ExchangeLabs/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=bad2b965b2e34014a20f06fb37471761-Meha + Kaushi","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=c4c07b8f67ba499d94fd8c9c93e3d649-Meha + Kaushik","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=c1e80254bd604af689df1be11370e6db-Meha + Kaushik","smtp:mekaushi@microsoft.onmicrosoft.com","smtp:mekaushi@service.microsoft.com","smtp:mekaushi@microsoft.com","SMTP:Meha.Kaushik@microsoft.com"],"refreshTokensValidFromDateTime":"2019-11-09T15:36:31Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"mekaushi@microsoft.com","state":null,"streetAddress":null,"surname":"Kaushik","telephoneNumber":"+1 + (778) 8125006","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/02bf3cc6-8649-4605-ad56-ed19c5a1c247/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"CA","userIdentities":[],"userPrincipalName":"mekaushi@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"407705","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Meng, + Wenbin","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"WMENG","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"V7Y + 1G5","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"BC","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10120668","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91743783","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"CA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"CA","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10120668","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1745","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"Vancouver","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"VANCOUVER-725","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"102017","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine2":"725 + Granville Street, 7th Floor","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"MS + Vancouver","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"6016079"}' headers: access-control-allow-origin: - '*' cache-control: - no-cache content-length: - - '14876' + - '15341' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Thu, 05 Mar 2020 03:22:07 GMT + - Thu, 18 Jun 2020 20:03:48 GMT duration: - - '1282743' + - '1075617' expires: - '-1' ocp-aad-diagnostics-server-name: - - pbWKcKU9yu1YQQpJCmnlfK2TCVlxFsqb2DLPG6Ke2u8= + - kEeIKcf5x3CjRAmQ7lvE462s1ORm+cHqkUYfg+keDHI= ocp-aad-session-key: - - tx0B8QNkfbaF0pXVRLXIRSQzDsu8SKqrKopEoLrSDv3m-uu8CX3aVrM2Gw9H842fRDfBuE9oZjens6v3_GzrfUWgW1COtJ2-PSFO3jX2x-BJSCgEVcqWy3pZqfNIyEgs.jKDUZwi-kTGDBeqTUnlAbbf8sSlGOswihdQxeqB37SY + - l3IshD0djLcfP32wIpbmWpD3fUD9YxDyc6mFVzOX5OkAHAgFjRh6O1wqvdW5wkfkM6MQZsYRGD_eVf6xJnlCwKQ2Iq5aTB3MBaF-yfL6GTJaMi9m0rQ_hZ-ya_WmXZ0x.9ghEnZBBFSeUR-m0pi7PfzEwvBHGvr4uFN9V_27hRBg pragma: - no-cache request-id: - - b044898b-ca56-4029-9da0-060e82b99aeb + - 05b5e52f-f1da-433f-bc59-716b0ec54a28 strict-transport-security: - max-age=31536000; includeSubDomains + x-aad-resource-unit: + - '1' x-aspnet-version: - 4.0.30319 x-ms-dirapi-data-contract-version: @@ -114,14 +117,16 @@ interactions: - request: body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "feb99c1a-6272-4966-8240-05442405ab09", + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "02bf3cc6-8649-4605-ad56-ed19c5a1c247", "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, "enablePurgeProtection": true}}' + "enableSoftDelete": true, "softDeleteRetentionInDays": 90, "enablePurgeProtection": + true, "networkAcls": {"bypass": "AzureServices", "defaultAction": "Allow", "ipRules": + [], "virtualNetworkRules": []}}}' headers: Accept: - application/json @@ -132,30 +137,30 @@ interactions: Connection: - keep-alive Content-Length: - - '803' + - '948' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --resource-group -n --enable-soft-delete --enable-purge-protection User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-keyvault/2.1.1 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002","name":"cli000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"feb99c1a-6272-4966-8240-05442405ab09","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,"enablePurgeProtection":true,"vaultUri":"https://cli000002.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002","name":"cli000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"02bf3cc6-8649-4605-ad56-ed19c5a1c247","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://cli000002.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache content-length: - - '1132' + - '1163' content-type: - application/json; charset=utf-8 date: - - Thu, 05 Mar 2020 03:22:12 GMT + - Thu, 18 Jun 2020 20:03:50 GMT expires: - '-1' pragma: @@ -173,7 +178,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.271 + - 1.1.0.282 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-powered-by: @@ -195,22 +200,22 @@ interactions: ParameterSetName: - --resource-group -n --enable-soft-delete --enable-purge-protection User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-keyvault/2.1.1 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002","name":"cli000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"feb99c1a-6272-4966-8240-05442405ab09","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,"enablePurgeProtection":true,"vaultUri":"https://cli000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002","name":"cli000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"02bf3cc6-8649-4605-ad56-ed19c5a1c247","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://cli000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1128' + - '1159' content-type: - application/json; charset=utf-8 date: - - Thu, 05 Mar 2020 03:22:42 GMT + - Thu, 18 Jun 2020 20:04:21 GMT expires: - '-1' pragma: @@ -228,7 +233,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.271 + - 1.1.0.282 x-powered-by: - ASP.NET status: @@ -244,8 +249,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-graphrbac/0.60.0 Azure-SDK-For-Python + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-graphrbac/0.60.0 + Azure-SDK-For-Python accept-language: - en-US method: GET @@ -254,7 +259,11 @@ interactions: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"e5007d2c-4b13-4a74-9b6a-605d99f03501","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":[],"appDisplayName":"Azure Cosmos DB","appId":"a232010e-820c-4083-83bb-3ace5fc29d0b","applicationTemplateId":null,"appOwnerTenantId":"f8cdef31-a31e-4b4a-93e4-5f571e91255a","appRoleAssignmentRequired":false,"appRoles":[],"displayName":"Azure - Cosmos DB","errorUrl":null,"homepage":null,"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft + Cosmos DB","errorUrl":null,"homepage":null,"informationalUrls":{"termsOfService":null,"support":null,"privacy":null,"marketing":null},"keyCredentials":[],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[{"adminConsentDescription":"Allow + the application to access Azure Cosmos DB on behalf of the signed-in user.","adminConsentDisplayName":"Access + Azure Cosmos DB","id":"8741c20d-e8c0-41ff-8adf-b7b9ba168197","isEnabled":true,"type":"User","userConsentDescription":"Allow + the application to access Azure Cosmos DB on your behalf.","userConsentDisplayName":"Access + Azure Cosmos DB as the Signed-in User","value":"user_impersonation"}],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":"Microsoft Services","replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["a232010e-820c-4083-83bb-3ace5fc29d0b"],"servicePrincipalType":"Application","signInAudience":"AzureADMultipleOrgs","tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: @@ -262,27 +271,29 @@ interactions: cache-control: - no-cache content-length: - - '1238' + - '1666' content-type: - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 dataserviceversion: - 3.0; date: - - Thu, 05 Mar 2020 03:22:43 GMT + - Thu, 18 Jun 2020 20:04:21 GMT duration: - - '527588' + - '657809' expires: - '-1' ocp-aad-diagnostics-server-name: - - nnwm1rHUXNOC2HCdDk0/PkC/19HDnlsfx+Y5YAxupsE= + - FvhLU7RkhyXnPbsQzQ4+NRQLfO5Kqk2r3ZtmPojIumw= ocp-aad-session-key: - - FeC8ODcVIr3E4km2yd50lMCK01JNdQTm3VPXpuckI732D9bpE7ce2EY3JNqfOV_WUlbBZOGBr3Sbbx8FzqvAxGjGyN-uJ1_rSr_X59RLC55rTx-XAHqILAVjTIpT3GaE.u04TwUToZ3dqOUV49ZoTWjD1mW9wjNvYZSQWoCdyXJs + - 1XxjIDtWEW8J6Pyb8bkQW2gKvUc7VpwxQlGrWcWQnSM784iUqLEuOZy4TZIOo_EN5GZNGeTegW2H9-2mi-jv5Z3Fwboa1Ij2q38IxnPpbthOPdnTEBlOdaH2bS2D6HAJ.srcW-7W2KK1D_CusV52lLVdKE_w1NOS0ZMuwDLjJKlI pragma: - no-cache request-id: - - a3630ca8-fbd9-43c7-95c3-f0741bbc98a0 + - b28049f6-ccfc-43b8-baf2-79bef4b2cc99 strict-transport-security: - max-age=31536000; includeSubDomains + x-aad-resource-unit: + - '1' x-aspnet-version: - 4.0.30319 x-ms-dirapi-data-contract-version: @@ -306,24 +317,24 @@ interactions: ParameterSetName: - -n -g --spn --key-permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-keyvault/2.1.1 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002","name":"cli000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"feb99c1a-6272-4966-8240-05442405ab09","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,"enablePurgeProtection":true,"vaultUri":"https://cli000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002","name":"cli000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"02bf3cc6-8649-4605-ad56-ed19c5a1c247","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://cli000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1128' + - '1159' content-type: - application/json; charset=utf-8 date: - - Thu, 05 Mar 2020 03:22:44 GMT + - Thu, 18 Jun 2020 20:04:21 GMT expires: - '-1' pragma: @@ -341,7 +352,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.271 + - 1.1.0.282 x-powered-by: - ASP.NET status: @@ -350,7 +361,7 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": - "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "feb99c1a-6272-4966-8240-05442405ab09", + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "02bf3cc6-8649-4605-ad56-ed19c5a1c247", "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", "backup", "restore", "recover"], "secrets": ["get", "list", "set", "delete", "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", @@ -358,9 +369,9 @@ interactions: "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}, {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "e5007d2c-4b13-4a74-9b6a-605d99f03501", - "permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://cli000002.vault.azure.net/", - "enabledForDeployment": false, "enableSoftDelete": true, "enablePurgeProtection": - true}}' + "permissions": {"keys": ["wrapKey", "get", "unwrapKey"]}}], "vaultUri": "https://cli000002.vault.azure.net/", + "enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays": + 90, "enablePurgeProtection": true}}' headers: Accept: - application/json @@ -371,30 +382,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1066' + - '1099' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --spn --key-permissions User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-keyvault/2.1.1 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002","name":"cli000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"feb99c1a-6272-4966-8240-05442405ab09","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":"e5007d2c-4b13-4a74-9b6a-605d99f03501","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"enablePurgeProtection":true,"vaultUri":"https://cli000002.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.KeyVault/vaults/cli000002","name":"cli000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"02bf3cc6-8649-4605-ad56-ed19c5a1c247","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":"e5007d2c-4b13-4a74-9b6a-605d99f03501","permissions":{"keys":["wrapKey","get","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://cli000002.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '1283' + - '1314' content-type: - application/json; charset=utf-8 date: - - Thu, 05 Mar 2020 03:22:45 GMT + - Thu, 18 Jun 2020 20:04:22 GMT expires: - '-1' pragma: @@ -412,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.0.271 + - 1.1.0.282 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-powered-by: @@ -434,8 +445,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: POST @@ -452,13 +463,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 05 Mar 2020 03:22:45 GMT + - Thu, 18 Jun 2020 20:04:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000;includeSubDomains www-authenticate: @@ -469,11 +478,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=136.55.153.161;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.81.141;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.897 + - 1.1.6.0 x-powered-by: - ASP.NET status: @@ -493,15 +502,15 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0 + Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://cli000002.vault.azure.net/keys/cli000003/create?api-version=7.0 response: body: - string: '{"key":{"kid":"https://cli000002.vault.azure.net/keys/cli000003/0ac6b315a797451381c54eceecd76120","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"0mXYo0vg_MLHnayADOVjAhOFyCvkWeojMQc1vfqT8IB_vd4jjJ2hqZNpHDeghahufwiCSstHHGH4WLqsWt4cgZsDgNiaPklsp3evcGxU3FWJLl3hLwABrRohi7ojcil7WzKYyhVC2Lvu2wz-RoTS4CvsW5ZL3RQb7_vV30120apBJGwkK3b49NH_s4Oe2Ey-9k_yneDG9FazAd8RXWmHx8bwMci-uGEWhVSqMD5k9Xce6rQA_bgzOX9r4joCl2fqMb8kO7nedcsGhgZ7A8zhLP9qPLt9kdcaT8p63OxseuIrw1kW51xoKXytnsAHIWznfAsWB88FGdFClMVRwspCFefKaOZZ4bfJg4JgVxetHjQkjo6rMb5eZ0nQG7vaJwvh_x1Gqf_N2Qbf05waSYyKKD3jY-5ztKbid3rEjHy1KLUTHqBzAr2zfygaoCNnFmrcArKjkxgBJAUo_xSJ1vy612y-8rewXMkjGrA34jm5l8o09mCTmD8pYd7L7RJlT0gT","e":"AQAB"},"attributes":{"enabled":true,"created":1583378567,"updated":1583378567,"recoveryLevel":"Recoverable"}}' + string: '{"key":{"kid":"https://cli000002.vault.azure.net/keys/cli000003/70e1e5b5e3014f668e20e3813b7c8e0f","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"n5LCvW1bqk-yKcV6uC3FHf500zSSRsyNa57XZIrwf617MSMkW3y_UfYpzLfvLEE70MnJDygplIk0CG4_XjGRO2ALWBOlNRRawzEx8xiIJoHpwWrRMAmjjohLYUNo2K2qb-AMt8GP192U9fn5e-s_yODB-SXM9kqNFA0yZ0yaYrYb4KhCgQ5GnIBOJhrgSd08wNvOzyDJqJt7bAGUcKmQyOOfUSa0AqU7K5sb4KND7fN9W_Lqfa-pxkL7hYBmtIROl-bPWWI3zUk05musTRVF09KfA-FWdJik-bibOAVQYwl2ED6n4JUXWST3uVq61sX9sAeCQ6c_8ZByiDEs6VMn8zD0vA6BYuZgrVD4bvkhlXsdnKbm0HUekRdDiNc1rTGiN27h6i2EJBjBlT6J_RjqTcSGObcgjCImTrq5wPecCQeFICNm2E3k5SPJIeOjWXpOhp9C-GjQqK49q5jPAhMLQbiHvBkrYTIKilF7CqweBd-kISeZdOSnzWQ6n8tQXGAr","e":"AQAB"},"attributes":{"enabled":true,"created":1592510665,"updated":1592510665,"recoveryLevel":"Recoverable"}}' headers: cache-control: - no-cache @@ -510,13 +519,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 05 Mar 2020 03:22:47 GMT + - Thu, 18 Jun 2020 20:04:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000;includeSubDomains x-aspnet-version: @@ -524,11 +531,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - addr=136.55.153.161;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=167.220.81.141;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.1.0.897 + - 1.1.6.0 x-powered-by: - ASP.NET status: @@ -548,15 +555,15 @@ interactions: ParameterSetName: - -n -g --locations --key-uri User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_key_vault_key_uri000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001","name":"cli_test_cosmosdb_key_vault_key_uri000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-03-05T03:22:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001","name":"cli_test_cosmosdb_key_vault_key_uri000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -565,7 +572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 05 Mar 2020 03:22:48 GMT + - Thu, 18 Jun 2020 20:04:25 GMT expires: - '-1' pragma: @@ -582,7 +589,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "eastus2", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "keyVaultKeyUri": "https://cli000002.vault.azure.net/keys/cli000003"}}' + "databaseAccountOfferType": "Standard", "keyVaultKeyUri": "https://cli000002.vault.azure.net/keys/cli000003", + "apiProperties": {}}}' headers: Accept: - application/json @@ -593,41 +601,41 @@ interactions: Connection: - keep-alive Content-Length: - - '281' + - '302' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --locations --key-uri User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","keyVaultKeyUri":"https://cli000002.vault.azure.net/keys/cli000003","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","keyVaultKeyUri":"https://cli000002.vault.azure.net/keys/cli000003","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East US 2","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1593' + - '1619' content-location: - - https://management.documents-staging.windows-ppe.net:450/subscriptions/80be3961-0521-4a0a-8570-5cd5a4e2f98c/resourceGroups/cli_test_cosmosdb_key_vault_key_urivdppz4nkmlg4yxcx656sb5qmsvovbzwy7zuz22xi/providers/Microsoft.DocumentDB/databaseAccounts/clixtfkachhkdk7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_key_vault_key_urifv7foq3byz5yvgvntpli4dcukufeqynpe346fxxt/providers/Microsoft.DocumentDB/databaseAccounts/cli3sfafnbmh5lq?api-version=2020-04-01 content-type: - application/json date: - - Thu, 05 Mar 2020 03:22:58 GMT + - Thu, 18 Jun 2020 20:04:30 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 pragma: - no-cache server: @@ -641,9 +649,793 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:05:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:06:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:06:33 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:07:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:07:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:08:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:08:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:09:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:09:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:10:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:10:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:11:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:11:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:12:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --key-uri + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:12:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -661,10 +1453,10 @@ interactions: ParameterSetName: - -n -g --locations --key-uri User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -674,11 +1466,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents-staging.windows-ppe.net:450/subscriptions/80be3961-0521-4a0a-8570-5cd5a4e2f98c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 content-type: - application/json date: - - Thu, 05 Mar 2020 03:23:29 GMT + - Thu, 18 Jun 2020 20:13:08 GMT pragma: - no-cache server: @@ -692,7 +1484,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -710,10 +1502,10 @@ interactions: ParameterSetName: - -n -g --locations --key-uri User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -723,11 +1515,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents-staging.windows-ppe.net:450/subscriptions/80be3961-0521-4a0a-8570-5cd5a4e2f98c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 content-type: - application/json date: - - Thu, 05 Mar 2020 03:23:59 GMT + - Thu, 18 Jun 2020 20:13:39 GMT pragma: - no-cache server: @@ -741,7 +1533,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -759,10 +1551,10 @@ interactions: ParameterSetName: - -n -g --locations --key-uri User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -772,11 +1564,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents-staging.windows-ppe.net:450/subscriptions/80be3961-0521-4a0a-8570-5cd5a4e2f98c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 content-type: - application/json date: - - Thu, 05 Mar 2020 03:24:29 GMT + - Thu, 18 Jun 2020 20:14:09 GMT pragma: - no-cache server: @@ -790,7 +1582,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -808,10 +1600,10 @@ interactions: ParameterSetName: - -n -g --locations --key-uri User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -821,11 +1613,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents-staging.windows-ppe.net:450/subscriptions/80be3961-0521-4a0a-8570-5cd5a4e2f98c/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff2cfe53-f879-414b-a7c5-b30e1c3f3604?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa5ba38e-213a-4d5f-9725-6de69df3d5d2?api-version=2020-04-01 content-type: - application/json date: - - Thu, 05 Mar 2020 03:25:00 GMT + - Thu, 18 Jun 2020 20:14:40 GMT pragma: - no-cache server: @@ -839,7 +1631,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -857,29 +1649,29 @@ interactions: ParameterSetName: - -n -g --locations --key-uri User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents-staging.windows-ppe.net:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","keyVaultKeyUri":"https://cli000002.vault.azure.net/keys/cli000003","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents-staging.windows-ppe.net:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents-staging.windows-ppe.net:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents-staging.windows-ppe.net:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","keyVaultKeyUri":"https://cli000002.vault.azure.net/keys/cli000003","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East + US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1957' + - '1927' content-location: - - https://management.documents-staging.windows-ppe.net:450/subscriptions/80be3961-0521-4a0a-8570-5cd5a4e2f98c/resourceGroups/cli_test_cosmosdb_key_vault_key_urivdppz4nkmlg4yxcx656sb5qmsvovbzwy7zuz22xi/providers/Microsoft.DocumentDB/databaseAccounts/clixtfkachhkdk7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_key_vault_key_urifv7foq3byz5yvgvntpli4dcukufeqynpe346fxxt/providers/Microsoft.DocumentDB/databaseAccounts/cli3sfafnbmh5lq?api-version=2020-04-01 content-type: - application/json date: - - Thu, 05 Mar 2020 03:25:00 GMT + - Thu, 18 Jun 2020 20:14:40 GMT pragma: - no-cache server: @@ -893,7 +1685,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -911,31 +1703,31 @@ interactions: ParameterSetName: - -n -g --locations --key-uri User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_key_vault_key_uri000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents-staging.windows-ppe.net:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","keyVaultKeyUri":"https://cli000002.vault.azure.net/keys/cli000003","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents-staging.windows-ppe.net:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents-staging.windows-ppe.net:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East - US 2","documentEndpoint":"https://cli000004-eastus2.documents-staging.windows-ppe.net:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East - US 2","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","keyVaultKeyUri":"https://cli000002.vault.azure.net/keys/cli000003","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-eastus2","locationName":"East + US 2","documentEndpoint":"https://cli000004-eastus2.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-eastus2","locationName":"East + US 2","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1957' + - '1927' content-location: - - https://management.documents-staging.windows-ppe.net:450/subscriptions/80be3961-0521-4a0a-8570-5cd5a4e2f98c/resourceGroups/cli_test_cosmosdb_key_vault_key_urivdppz4nkmlg4yxcx656sb5qmsvovbzwy7zuz22xi/providers/Microsoft.DocumentDB/databaseAccounts/clixtfkachhkdk7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_key_vault_key_urifv7foq3byz5yvgvntpli4dcukufeqynpe346fxxt/providers/Microsoft.DocumentDB/databaseAccounts/cli3sfafnbmh5lq?api-version=2020-04-01 content-type: - application/json date: - - Thu, 05 Mar 2020 03:25:01 GMT + - Thu, 18 Jun 2020 20:14:40 GMT pragma: - no-cache server: @@ -949,7 +1741,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml index 154ad8a512b..89977d6176d 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_collection.yaml @@ -11,17 +11,17 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_collection000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001","name":"cli_test_cosmosdb_mongodb_collection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-18T20:19:02Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001","name":"cli_test_cosmosdb_mongodb_collection000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 20:19:05 GMT + - Thu, 18 Jun 2020 20:03:47 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard"}}' + "Standard", "apiProperties": {}, "enableAnalyticalStorage": true}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '189' + - '243' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1515' + - '1561' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:09 GMT + - Thu, 18 Jun 2020 20:03:53 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 pragma: - no-cache server: @@ -124,12 +124,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +139,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:40 GMT + - Thu, 18 Jun 2020 20:04:23 GMT pragma: - no-cache server: @@ -173,12 +173,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +188,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:10 GMT + - Thu, 18 Jun 2020 20:04:54 GMT pragma: - no-cache server: @@ -222,12 +222,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +237,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:40 GMT + - Thu, 18 Jun 2020 20:05:24 GMT pragma: - no-cache server: @@ -271,12 +271,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +286,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:10 GMT + - Thu, 18 Jun 2020 20:05:55 GMT pragma: - no-cache server: @@ -320,12 +320,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +335,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:40 GMT + - Thu, 18 Jun 2020 20:06:25 GMT pragma: - no-cache server: @@ -369,12 +369,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +384,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:11 GMT + - Thu, 18 Jun 2020 20:06:55 GMT pragma: - no-cache server: @@ -418,12 +418,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +433,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:41 GMT + - Thu, 18 Jun 2020 20:07:26 GMT pragma: - no-cache server: @@ -467,12 +467,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +482,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:11 GMT + - Thu, 18 Jun 2020 20:07:56 GMT pragma: - no-cache server: @@ -516,12 +516,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +531,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:42 GMT + - Thu, 18 Jun 2020 20:08:27 GMT pragma: - no-cache server: @@ -565,12 +565,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +580,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:12 GMT + - Thu, 18 Jun 2020 20:08:58 GMT pragma: - no-cache server: @@ -614,12 +614,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +629,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:43 GMT + - Thu, 18 Jun 2020 20:09:28 GMT pragma: - no-cache server: @@ -663,12 +663,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +678,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:13 GMT + - Thu, 18 Jun 2020 20:09:58 GMT pragma: - no-cache server: @@ -712,12 +712,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +727,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:43 GMT + - Thu, 18 Jun 2020 20:10:28 GMT pragma: - no-cache server: @@ -761,12 +761,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +776,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:14 GMT + - Thu, 18 Jun 2020 20:10:59 GMT pragma: - no-cache server: @@ -810,12 +810,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:44 GMT + - Thu, 18 Jun 2020 20:11:30 GMT pragma: - no-cache server: @@ -859,12 +859,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:14 GMT + - Thu, 18 Jun 2020 20:12:00 GMT pragma: - no-cache server: @@ -908,12 +908,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:43 GMT + - Thu, 18 Jun 2020 20:12:31 GMT pragma: - no-cache server: @@ -957,12 +957,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:14 GMT + - Thu, 18 Jun 2020 20:13:01 GMT pragma: - no-cache server: @@ -1006,12 +1006,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:44 GMT + - Thu, 18 Jun 2020 20:13:31 GMT pragma: - no-cache server: @@ -1055,12 +1055,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1070,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:14 GMT + - Thu, 18 Jun 2020 20:14:02 GMT pragma: - no-cache server: @@ -1104,12 +1104,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1119,11 +1119,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:45 GMT + - Thu, 18 Jun 2020 20:14:32 GMT pragma: - no-cache server: @@ -1153,12 +1153,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1168,11 +1168,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:15 GMT + - Thu, 18 Jun 2020 20:15:02 GMT pragma: - no-cache server: @@ -1202,12 +1202,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1217,11 +1217,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:46 GMT + - Thu, 18 Jun 2020 20:15:33 GMT pragma: - no-cache server: @@ -1251,12 +1251,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1266,11 +1266,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:16 GMT + - Thu, 18 Jun 2020 20:16:04 GMT pragma: - no-cache server: @@ -1300,12 +1300,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1315,11 +1315,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:48 GMT + - Thu, 18 Jun 2020 20:16:33 GMT pragma: - no-cache server: @@ -1349,12 +1349,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1364,11 +1364,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:18 GMT + - Thu, 18 Jun 2020 20:17:04 GMT pragma: - no-cache server: @@ -1398,12 +1398,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1413,11 +1413,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:49 GMT + - Thu, 18 Jun 2020 20:17:34 GMT pragma: - no-cache server: @@ -1447,12 +1447,257 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:18:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:18:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:08 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --enable-analytical-storage + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1462,11 +1707,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1e950373-1574-427e-bc5c-79d84eae2257?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93c1595f-aefe-4561-aee6-71ed942024cb?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:19 GMT + - Thu, 18 Jun 2020 20:20:38 GMT pragma: - no-cache server: @@ -1496,31 +1741,31 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1845' + - '1891' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:19 GMT + - Thu, 18 Jun 2020 20:20:38 GMT pragma: - no-cache server: @@ -1550,33 +1795,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind + - -n -g --kind --enable-analytical-storage User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1845' + - '1891' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:20 GMT + - Thu, 18 Jun 2020 20:20:39 GMT pragma: - no-cache server: @@ -1612,30 +1857,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd73538e-b4f2-4c19-9822-3a3a2e0c226a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/17bb4581-17a5-4a21-bdab-0323ffa2cda2?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:21 GMT + - Thu, 18 Jun 2020 20:20:39 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/dd73538e-b4f2-4c19-9822-3a3a2e0c226a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/operationResults/17bb4581-17a5-4a21-bdab-0323ffa2cda2?api-version=2020-04-01 pragma: - no-cache server: @@ -1647,7 +1892,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1665,10 +1910,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd73538e-b4f2-4c19-9822-3a3a2e0c226a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/17bb4581-17a5-4a21-bdab-0323ffa2cda2?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1678,11 +1923,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dd73538e-b4f2-4c19-9822-3a3a2e0c226a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/17bb4581-17a5-4a21-bdab-0323ffa2cda2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:51 GMT + - Thu, 18 Jun 2020 20:21:11 GMT pragma: - no-cache server: @@ -1714,24 +1959,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"XIBQAA==","_etag":"\"0000c102-0000-0700-0000-5ec2f1150000\"","_ts":1589834005}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"KPJuAA==","_etag":"\"0000a405-0000-0700-0000-5eebcc9c0000\"","_ts":1592511644}}}' headers: cache-control: - no-store, no-cache content-length: - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:52 GMT + - Thu, 18 Jun 2020 20:21:11 GMT pragma: - no-cache server: @@ -1763,27 +2008,27 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: e3f6b610-9946-11ea-b2ac-a08cfdd714a6, - Request URI: /apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/94f9054e-bda1-45b5-bdca-10f09556e13f/partitions/992dfa3a-a1a3-45c6-b825-7d4c856443d2/replicas/132342904167714496s, - RequestStats: \\r\\nRequestStartTime: 2020-05-18T20:33:55.3691117Z, RequestEndTime: - 2020-05-18T20:33:55.3791165Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-05-18T20:33:55.3791165Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.18:11300/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/94f9054e-bda1-45b5-bdca-10f09556e13f/partitions/992dfa3a-a1a3-45c6-b825-7d4c856443d2/replicas/132342904167714496s, - LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, + {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 4150573c-b1a1-11ea-89ea-b46bfc3d8f4d, + Request URI: /apps/a838b6b5-36e0-43c6-8479-9b6c837000ca/services/bfce0062-5c3c-4c25-86b9-2857d0f85aab/partitions/3c457f4a-68ed-4c8e-bf0a-f20e2269c93d/replicas/132369191142555817s, + RequestStats: \\r\\nRequestStartTime: 2020-06-18T20:21:14.2901263Z, RequestEndTime: + 2020-06-18T20:21:14.2901263Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-06-18T20:21:14.2901263Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.25:11300/apps/a838b6b5-36e0-43c6-8479-9b6c837000ca/services/bfce0062-5c3c-4c25-86b9-2857d0f85aab/partitions/3c457f4a-68ed-4c8e-bf0a-f20e2269c93d/replicas/132369191142555817s, + LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, - OperationType: Read\\r\\nResponseTime: 2020-05-18T20:33:55.3791165Z, StoreResult: - StorePhysicalAddress: rntbd://10.0.0.21:11300/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/94f9054e-bda1-45b5-bdca-10f09556e13f/partitions/992dfa3a-a1a3-45c6-b825-7d4c856443d2/replicas/132342944474422832s, - LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, + OperationType: Read\\r\\nResponseTime: 2020-06-18T20:21:14.2901263Z, StoreResult: + StorePhysicalAddress: rntbd://10.0.0.19:11300/apps/a838b6b5-36e0-43c6-8479-9b6c837000ca/services/bfce0062-5c3c-4c25-86b9-2857d0f85aab/partitions/3c457f4a-68ed-4c8e-bf0a-f20e2269c93d/replicas/132369325304643268s, + LSN: 7, GlobalCommittedLsn: 7, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#7, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/cli000004/colls/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -1793,11 +2038,11 @@ interactions: content-length: - '1732' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections/clifmc2yah6yc7w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections/clifcmyu5prqdmz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:55 GMT + - Thu, 18 Jun 2020 20:21:13 GMT pragma: - no-cache server: @@ -1813,7 +2058,7 @@ interactions: message: NotFound - request: body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": - "Hash"}}, "options": {}}}' + "Hash"}, "analyticalStorageTtl": 3000}, "options": {}}}' headers: Accept: - application/json @@ -1824,36 +2069,36 @@ interactions: Connection: - keep-alive Content-Length: - - '107' + - '137' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -a -d -n --shard + - -g -a -d -n --shard --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec040711-9a60-4255-82d8-de7dbd4b5cd6?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/82cc5a78-2710-47ec-b524-a0fc430d9ba7?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections/clifmc2yah6yc7w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections/clifcmyu5prqdmz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:55 GMT + - Thu, 18 Jun 2020 20:21:15 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/ec040711-9a60-4255-82d8-de7dbd4b5cd6?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/82cc5a78-2710-47ec-b524-a0fc430d9ba7?api-version=2020-04-01 pragma: - no-cache server: @@ -1881,12 +2126,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -d -n --shard + - -g -a -d -n --shard --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec040711-9a60-4255-82d8-de7dbd4b5cd6?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/82cc5a78-2710-47ec-b524-a0fc430d9ba7?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1896,11 +2141,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ec040711-9a60-4255-82d8-de7dbd4b5cd6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/82cc5a78-2710-47ec-b524-a0fc430d9ba7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:26 GMT + - Thu, 18 Jun 2020 20:21:46 GMT pragma: - no-cache server: @@ -1930,26 +2175,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -d -n --shard + - -g -a -d -n --shard --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XIBQAIJ0reA=","_etag":"\"0000c302-0000-0700-0000-5ec2f1380000\"","_ts":1589834040,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"KPJuAKDQ0bc=","_etag":"\"0000a605-0000-0700-0000-5eebccbf0000\"","_ts":1592511679,"analyticalStorageTtl":3000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '659' + - '687' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections/clifmc2yah6yc7w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections/clifcmyu5prqdmz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:26 GMT + - Thu, 18 Jun 2020 20:21:47 GMT pragma: - no-cache server: @@ -1979,28 +2224,28 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -d -n --idx + - -g -a -d -n --idx --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XIBQAIJ0reA=","_etag":"\"0000c302-0000-0700-0000-5ec2f1380000\"","_ts":1589834040,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"KPJuAKDQ0bc=","_etag":"\"0000a605-0000-0700-0000-5eebccbf0000\"","_ts":1592511679,"analyticalStorageTtl":3000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '659' + - '687' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections/clifmc2yah6yc7w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections/clifcmyu5prqdmz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:29 GMT + - Thu, 18 Jun 2020 20:21:49 GMT pragma: - no-cache server: @@ -2021,7 +2266,7 @@ interactions: - request: body: '{"properties": {"resource": {"id": "cli000002", "shardKey": {"theShardKey": "Hash"}, "indexes": [{"key": {"keys": ["_ts"]}, "options": {"expireAfterSeconds": - 1000}}]}, "options": {}}}' + 1000}}], "analyticalStorageTtl": 6000}, "options": {}}}' headers: Accept: - application/json @@ -2032,36 +2277,36 @@ interactions: Connection: - keep-alive Content-Length: - - '189' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -a -d -n --idx + - -g -a -d -n --idx --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/625f69c7-9d60-4c70-9a82-da768a6a103a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93a60331-688a-4fd9-b965-524531b22085?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections/clifmc2yah6yc7w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections/clifcmyu5prqdmz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:29 GMT + - Thu, 18 Jun 2020 20:21:50 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/625f69c7-9d60-4c70-9a82-da768a6a103a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/93a60331-688a-4fd9-b965-524531b22085?api-version=2020-04-01 pragma: - no-cache server: @@ -2073,7 +2318,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -2089,12 +2334,12 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -d -n --idx + - -g -a -d -n --idx --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/625f69c7-9d60-4c70-9a82-da768a6a103a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93a60331-688a-4fd9-b965-524531b22085?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2104,11 +2349,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/625f69c7-9d60-4c70-9a82-da768a6a103a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93a60331-688a-4fd9-b965-524531b22085?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:00 GMT + - Thu, 18 Jun 2020 20:22:20 GMT pragma: - no-cache server: @@ -2138,26 +2383,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -a -d -n --idx + - -g -a -d -n --idx --analytical-storage-ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XIBQAIJ0reA=","_etag":"\"0000c802-0000-0700-0000-5ec2f15a0000\"","_ts":1589834074,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"KPJuAKDQ0bc=","_etag":"\"0000af05-0000-0700-0000-5eebcce20000\"","_ts":1592511714,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '722' + - '750' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections/clifmc2yah6yc7w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections/clifcmyu5prqdmz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:01 GMT + - Thu, 18 Jun 2020 20:22:21 GMT pragma: - no-cache server: @@ -2189,26 +2434,26 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XIBQAIJ0reA=","_etag":"\"0000c802-0000-0700-0000-5ec2f15a0000\"","_ts":1589834074,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"KPJuAKDQ0bc=","_etag":"\"0000af05-0000-0700-0000-5eebcce20000\"","_ts":1592511714,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '722' + - '750' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections/clifmc2yah6yc7w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections/clifcmyu5prqdmz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:02 GMT + - Thu, 18 Jun 2020 20:22:23 GMT pragma: - no-cache server: @@ -2240,26 +2485,26 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XIBQAIJ0reA=","_etag":"\"0000c802-0000-0700-0000-5ec2f15a0000\"","_ts":1589834074,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"KPJuAKDQ0bc=","_etag":"\"0000af05-0000-0700-0000-5eebcce20000\"","_ts":1592511714,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}]}' headers: cache-control: - no-store, no-cache content-length: - - '734' + - '762' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:04 GMT + - Thu, 18 Jun 2020 20:22:24 GMT pragma: - no-cache server: @@ -2291,26 +2536,26 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XIBQAIJ0reA=","_etag":"\"0000c802-0000-0700-0000-5ec2f15a0000\"","_ts":1589834074,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"KPJuAKDQ0bc=","_etag":"\"0000af05-0000-0700-0000-5eebcce20000\"","_ts":1592511714,"analyticalStorageTtl":6000,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["_ts"]},"options":{"expireAfterSeconds":1000}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '722' + - '750' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections/clifmc2yah6yc7w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections/clifcmyu5prqdmz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:05 GMT + - Thu, 18 Jun 2020 20:22:25 GMT pragma: - no-cache server: @@ -2344,30 +2589,30 @@ interactions: ParameterSetName: - -g -a -d -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4710af11-4841-40ae-9d93-f67dcf7526ac?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e09946ca-c0b1-4231-b548-e85ab6ad6960?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections/clifmc2yah6yc7w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections/clifcmyu5prqdmz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:06 GMT + - Thu, 18 Jun 2020 20:22:26 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/4710af11-4841-40ae-9d93-f67dcf7526ac?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections/cli000002/operationResults/e09946ca-c0b1-4231-b548-e85ab6ad6960?api-version=2020-04-01 pragma: - no-cache server: @@ -2379,7 +2624,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -2397,10 +2642,10 @@ interactions: ParameterSetName: - -g -a -d -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4710af11-4841-40ae-9d93-f67dcf7526ac?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e09946ca-c0b1-4231-b548-e85ab6ad6960?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2410,11 +2655,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4710af11-4841-40ae-9d93-f67dcf7526ac?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e09946ca-c0b1-4231-b548-e85ab6ad6960?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:36 GMT + - Thu, 18 Jun 2020 20:22:57 GMT pragma: - no-cache server: @@ -2446,12 +2691,12 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_collection000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000004/collections?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -2461,11 +2706,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_collection3ngv2xooeuptdrzc346rk4agi6gw4brhtjavejs/providers/Microsoft.DocumentDB/databaseAccounts/clijyvxehdtocu5/mongodbDatabases/cli5uum5nnb3dp3/collections?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_collectionpdxvtvgnpou2v7fscm7ynpfkgu5dqq2j7psa6as/providers/Microsoft.DocumentDB/databaseAccounts/cliip2p3a3xaeol/mongodbDatabases/clisiu7oagbta37/collections?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:38 GMT + - Thu, 18 Jun 2020 20:22:59 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml index e555bd1ca00..df192ee647b 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_database.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_database000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001","name":"cli_test_cosmosdb_mongodb_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-18T20:37:05Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001","name":"cli_test_cosmosdb_mongodb_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:03:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 20:37:08 GMT + - Thu, 18 Jun 2020 20:03:46 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard"}}' + "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '189' + - '210' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1515' + - '1562' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:12 GMT + - Thu, 18 Jun 2020 20:03:52 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 pragma: - no-cache server: @@ -126,10 +126,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +139,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:43 GMT + - Thu, 18 Jun 2020 20:04:23 GMT pragma: - no-cache server: @@ -175,10 +175,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +188,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:38:13 GMT + - Thu, 18 Jun 2020 20:04:53 GMT pragma: - no-cache server: @@ -224,10 +224,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +237,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:38:43 GMT + - Thu, 18 Jun 2020 20:05:23 GMT pragma: - no-cache server: @@ -273,10 +273,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +286,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:39:14 GMT + - Thu, 18 Jun 2020 20:05:54 GMT pragma: - no-cache server: @@ -322,10 +322,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +335,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:39:44 GMT + - Thu, 18 Jun 2020 20:06:24 GMT pragma: - no-cache server: @@ -371,10 +371,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +384,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:40:14 GMT + - Thu, 18 Jun 2020 20:06:55 GMT pragma: - no-cache server: @@ -420,10 +420,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +433,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:40:44 GMT + - Thu, 18 Jun 2020 20:07:25 GMT pragma: - no-cache server: @@ -469,10 +469,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +482,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:41:14 GMT + - Thu, 18 Jun 2020 20:07:56 GMT pragma: - no-cache server: @@ -518,10 +518,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +531,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:41:45 GMT + - Thu, 18 Jun 2020 20:08:25 GMT pragma: - no-cache server: @@ -567,10 +567,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +580,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:42:16 GMT + - Thu, 18 Jun 2020 20:08:55 GMT pragma: - no-cache server: @@ -616,10 +616,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +629,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:42:46 GMT + - Thu, 18 Jun 2020 20:09:27 GMT pragma: - no-cache server: @@ -665,10 +665,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +678,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:43:16 GMT + - Thu, 18 Jun 2020 20:09:56 GMT pragma: - no-cache server: @@ -714,10 +714,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +727,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:43:46 GMT + - Thu, 18 Jun 2020 20:10:26 GMT pragma: - no-cache server: @@ -763,10 +763,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +776,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:44:17 GMT + - Thu, 18 Jun 2020 20:10:57 GMT pragma: - no-cache server: @@ -812,10 +812,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:44:47 GMT + - Thu, 18 Jun 2020 20:11:27 GMT pragma: - no-cache server: @@ -861,10 +861,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:45:17 GMT + - Thu, 18 Jun 2020 20:11:57 GMT pragma: - no-cache server: @@ -910,10 +910,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:45:47 GMT + - Thu, 18 Jun 2020 20:12:28 GMT pragma: - no-cache server: @@ -959,10 +959,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:46:17 GMT + - Thu, 18 Jun 2020 20:12:59 GMT pragma: - no-cache server: @@ -1008,10 +1008,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:46:47 GMT + - Thu, 18 Jun 2020 20:13:29 GMT pragma: - no-cache server: @@ -1057,10 +1057,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1070,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:47:18 GMT + - Thu, 18 Jun 2020 20:13:59 GMT pragma: - no-cache server: @@ -1106,10 +1106,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1119,11 +1119,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:47:48 GMT + - Thu, 18 Jun 2020 20:14:29 GMT pragma: - no-cache server: @@ -1155,10 +1155,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1168,11 +1168,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:18 GMT + - Thu, 18 Jun 2020 20:14:59 GMT pragma: - no-cache server: @@ -1204,10 +1204,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1217,11 +1217,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:48 GMT + - Thu, 18 Jun 2020 20:15:30 GMT pragma: - no-cache server: @@ -1253,10 +1253,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1266,11 +1266,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:49:20 GMT + - Thu, 18 Jun 2020 20:16:01 GMT pragma: - no-cache server: @@ -1302,10 +1302,10 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1315,11 +1315,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:49:50 GMT + - Thu, 18 Jun 2020 20:16:31 GMT pragma: - no-cache server: @@ -1351,10 +1351,598 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:17:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:17:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:18:02 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:18:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:19:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:20:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:21:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:21:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:22:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:22:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1364,11 +1952,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/31291629-d263-4150-aa19-2f84773702b8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7f661acc-018c-42f6-bf5f-6e6100f22127?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:19 GMT + - Thu, 18 Jun 2020 20:23:06 GMT pragma: - no-cache server: @@ -1400,29 +1988,29 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1845' + - '1892' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:20 GMT + - Thu, 18 Jun 2020 20:23:06 GMT pragma: - no-cache server: @@ -1454,31 +2042,31 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1845' + - '1892' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:20 GMT + - Thu, 18 Jun 2020 20:23:08 GMT pragma: - no-cache server: @@ -1510,27 +2098,27 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 3054bbb9-9949-11ea-9dca-a08cfdd714a6, - Request URI: /apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/f27cad9f-f231-44b4-b6b7-12b83b2a7a7c/partitions/0ed084a3-8930-46f2-be9f-872a9613bca8/replicas/132342978182240780s, - RequestStats: \\r\\nRequestStartTime: 2020-05-18T20:50:22.2984432Z, RequestEndTime: - 2020-05-18T20:50:22.3084450Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-05-18T20:50:22.3084450Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.17:11000/apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/f27cad9f-f231-44b4-b6b7-12b83b2a7a7c/partitions/0ed084a3-8930-46f2-be9f-872a9613bca8/replicas/132342978182240780s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 86072bc3-b1a1-11ea-bde4-b46bfc3d8f4d, + Request URI: /apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/33f470c5-4dce-4ebf-8c6d-51eb2395fce1/partitions/87a54b7b-9634-4f5f-8cec-75e79cd76607/replicas/132369477108296818s, + RequestStats: \\r\\nRequestStartTime: 2020-06-18T20:23:09.3700780Z, RequestEndTime: + 2020-06-18T20:23:09.3800896Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-06-18T20:23:09.3800896Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11300/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/33f470c5-4dce-4ebf-8c6d-51eb2395fce1/partitions/87a54b7b-9634-4f5f-8cec-75e79cd76607/replicas/132369477108296818s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: - Read\\r\\nResponseTime: 2020-05-18T20:50:22.3084450Z, StoreResult: StorePhysicalAddress: - rntbd://10.0.0.22:11000/apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/f27cad9f-f231-44b4-b6b7-12b83b2a7a7c/partitions/0ed084a3-8930-46f2-be9f-872a9613bca8/replicas/132343016857977018s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + Read\\r\\nResponseTime: 2020-06-18T20:23:09.3800896Z, StoreResult: StorePhysicalAddress: + rntbd://10.0.0.28:11000/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/33f470c5-4dce-4ebf-8c6d-51eb2395fce1/partitions/87a54b7b-9634-4f5f-8cec-75e79cd76607/replicas/132369703710027120s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -1540,11 +2128,11 @@ interactions: content-length: - '1706' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy/mongodbDatabases/clif5vc7cpwufi6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f/mongodbDatabases/clihcpafpktqkdc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:22 GMT + - Thu, 18 Jun 2020 20:23:08 GMT pragma: - no-cache server: @@ -1576,30 +2164,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/30b5350d-bf9b-4668-a7e3-af5bb2945592?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa0df976-28d0-4b60-813a-df42661641ae?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy/mongodbDatabases/clif5vc7cpwufi6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f/mongodbDatabases/clihcpafpktqkdc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:23 GMT + - Thu, 18 Jun 2020 20:23:11 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002/operationResults/30b5350d-bf9b-4668-a7e3-af5bb2945592?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002/operationResults/aa0df976-28d0-4b60-813a-df42661641ae?api-version=2020-04-01 pragma: - no-cache server: @@ -1629,10 +2217,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/30b5350d-bf9b-4668-a7e3-af5bb2945592?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa0df976-28d0-4b60-813a-df42661641ae?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1642,11 +2230,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/30b5350d-bf9b-4668-a7e3-af5bb2945592?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/aa0df976-28d0-4b60-813a-df42661641ae?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:53 GMT + - Thu, 18 Jun 2020 20:23:41 GMT pragma: - no-cache server: @@ -1678,24 +2266,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"QxFrAA==","_etag":"\"0000aa01-0000-0700-0000-5ec2f5130000\"","_ts":1589835027}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"wkBlAA==","_etag":"\"00004f03-0000-0700-0000-5eebcd340000\"","_ts":1592511796}}}' headers: cache-control: - no-store, no-cache content-length: - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy/mongodbDatabases/clif5vc7cpwufi6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f/mongodbDatabases/clihcpafpktqkdc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:53 GMT + - Thu, 18 Jun 2020 20:23:42 GMT pragma: - no-cache server: @@ -1727,26 +2315,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"QxFrAA==","_etag":"\"0000aa01-0000-0700-0000-5ec2f5130000\"","_ts":1589835027}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"wkBlAA==","_etag":"\"00004f03-0000-0700-0000-5eebcd340000\"","_ts":1592511796}}}' headers: cache-control: - no-store, no-cache content-length: - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy/mongodbDatabases/clif5vc7cpwufi6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f/mongodbDatabases/clihcpafpktqkdc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:56 GMT + - Thu, 18 Jun 2020 20:23:42 GMT pragma: - no-cache server: @@ -1778,26 +2366,26 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"QxFrAA==","_etag":"\"0000aa01-0000-0700-0000-5ec2f5130000\"","_ts":1589835027}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"wkBlAA==","_etag":"\"00004f03-0000-0700-0000-5eebcd340000\"","_ts":1592511796}}}]}' headers: cache-control: - no-store, no-cache content-length: - '486' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy/mongodbDatabases?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f/mongodbDatabases?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:57 GMT + - Thu, 18 Jun 2020 20:23:44 GMT pragma: - no-cache server: @@ -1829,26 +2417,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"QxFrAA==","_etag":"\"0000aa01-0000-0700-0000-5ec2f5130000\"","_ts":1589835027}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"wkBlAA==","_etag":"\"00004f03-0000-0700-0000-5eebcd340000\"","_ts":1592511796}}}' headers: cache-control: - no-store, no-cache content-length: - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy/mongodbDatabases/clif5vc7cpwufi6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f/mongodbDatabases/clihcpafpktqkdc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:58 GMT + - Thu, 18 Jun 2020 20:23:45 GMT pragma: - no-cache server: @@ -1882,30 +2470,30 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a3bd5909-7f60-4d92-9485-955d7b824a49?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21f525a4-83f3-42cf-b0b2-194f551023bd?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy/mongodbDatabases/clif5vc7cpwufi6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f/mongodbDatabases/clihcpafpktqkdc?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:59 GMT + - Thu, 18 Jun 2020 20:23:46 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002/operationResults/a3bd5909-7f60-4d92-9485-955d7b824a49?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases/cli000002/operationResults/21f525a4-83f3-42cf-b0b2-194f551023bd?api-version=2020-04-01 pragma: - no-cache server: @@ -1935,10 +2523,10 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a3bd5909-7f60-4d92-9485-955d7b824a49?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21f525a4-83f3-42cf-b0b2-194f551023bd?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1948,11 +2536,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a3bd5909-7f60-4d92-9485-955d7b824a49?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21f525a4-83f3-42cf-b0b2-194f551023bd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:51:30 GMT + - Thu, 18 Jun 2020 20:24:17 GMT pragma: - no-cache server: @@ -1984,12 +2572,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/mongodbDatabases?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -1999,11 +2587,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_databasegjkcl4shpcl2kms2oeee7mhu6f3ticgx2we6x2bxi/providers/Microsoft.DocumentDB/databaseAccounts/cliq7wyd44hvgqy/mongodbDatabases?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_databasevq2tjdqvncdr4nqvyljya2xrho5h5eizlrs2gkozo/providers/Microsoft.DocumentDB/databaseAccounts/clisrpblt37xj6f/mongodbDatabases?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:51:31 GMT + - Thu, 18 Jun 2020 20:24:19 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_resource_throughput.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_resource_throughput.yaml index 2b71984da5b..73f18ae4a56 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_resource_throughput.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_mongodb_resource_throughput.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_mongodb_resource_throughput000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001","name":"cli_test_cosmosdb_mongodb_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:03:41Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001","name":"cli_test_cosmosdb_mongodb_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:22:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:03:42 GMT + - Thu, 18 Jun 2020 20:22:10 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard"}}' + "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '189' + - '210' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1404' + - '1562' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:03:45 GMT + - Thu, 18 Jun 2020 20:22:18 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,1038 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:22:49 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:23:20 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:23:49 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:24:19 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:24:50 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:25:20 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:25:51 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:21 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:51 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:27:22 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:27:52 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:22 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:52 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:52 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:30:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:30:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:31:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:31:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:32:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:32:56 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,24 +1155,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:04:15 GMT + - Thu, 18 Jun 2020 20:33:25 GMT pragma: - no-cache server: @@ -157,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,24 +1204,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:04:45 GMT + - Thu, 18 Jun 2020 20:33:56 GMT pragma: - no-cache server: @@ -206,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,24 +1253,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:05:16 GMT + - Thu, 18 Jun 2020 20:34:26 GMT pragma: - no-cache server: @@ -255,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,24 +1302,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:05:46 GMT + - Thu, 18 Jun 2020 20:34:57 GMT pragma: - no-cache server: @@ -304,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,24 +1351,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:06:16 GMT + - Thu, 18 Jun 2020 20:35:27 GMT pragma: - no-cache server: @@ -353,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,24 +1400,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:06:47 GMT + - Thu, 18 Jun 2020 20:35:57 GMT pragma: - no-cache server: @@ -402,7 +1431,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,24 +1449,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:07:17 GMT + - Thu, 18 Jun 2020 20:36:28 GMT pragma: - no-cache server: @@ -451,7 +1480,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,24 +1498,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:07:47 GMT + - Thu, 18 Jun 2020 20:36:58 GMT pragma: - no-cache server: @@ -500,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,24 +1547,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:18 GMT + - Thu, 18 Jun 2020 20:37:29 GMT pragma: - no-cache server: @@ -549,7 +1578,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,24 +1596,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:08:48 GMT + - Thu, 18 Jun 2020 20:38:02 GMT pragma: - no-cache server: @@ -598,7 +1627,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,24 +1645,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:18 GMT + - Thu, 18 Jun 2020 20:38:33 GMT pragma: - no-cache server: @@ -647,7 +1676,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,24 +1694,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:48 GMT + - Thu, 18 Jun 2020 20:39:03 GMT pragma: - no-cache server: @@ -696,7 +1725,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,24 +1743,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:10:18 GMT + - Thu, 18 Jun 2020 20:39:33 GMT pragma: - no-cache server: @@ -745,7 +1774,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,24 +1792,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:10:48 GMT + - Thu, 18 Jun 2020 20:40:04 GMT pragma: - no-cache server: @@ -794,7 +1823,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,24 +1841,24 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4bcbd03a-a9ef-4a92-b206-ca7dfd110a72?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/08c48f08-4400-47a0-97ac-67e29fc85513?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:19 GMT + - Thu, 18 Jun 2020 20:40:34 GMT pragma: - no-cache server: @@ -843,7 +1872,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,29 +1890,29 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1718' + - '1892' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:19 GMT + - Thu, 18 Jun 2020 20:40:35 GMT pragma: - no-cache server: @@ -897,7 +1926,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -915,31 +1944,31 @@ interactions: ParameterSetName: - -n -g --kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1718' + - '1892' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:19 GMT + - Thu, 18 Jun 2020 20:40:34 GMT pragma: - no-cache server: @@ -953,13 +1982,13 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok - request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"Throughput": - "1000"}}}' + body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"throughput": + 1000}}}' headers: Accept: - application/json @@ -970,36 +1999,36 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '88' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3333e1d5-1c7e-40a8-869c-c53f76469ddf?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b1c893d5-fe46-426e-8123-53fac99fd8f5?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:20 GMT + - Thu, 18 Jun 2020 20:40:36 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/operationResults/3333e1d5-1c7e-40a8-869c-c53f76469ddf?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/operationResults/b1c893d5-fe46-426e-8123-53fac99fd8f5?api-version=2020-04-01 pragma: - no-cache server: @@ -1009,7 +2038,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1029,24 +2058,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3333e1d5-1c7e-40a8-869c-c53f76469ddf?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b1c893d5-fe46-426e-8123-53fac99fd8f5?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3333e1d5-1c7e-40a8-869c-c53f76469ddf?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b1c893d5-fe46-426e-8123-53fac99fd8f5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:51 GMT + - Thu, 18 Jun 2020 20:41:07 GMT pragma: - no-cache server: @@ -1060,7 +2089,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1078,24 +2107,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"M75OAA==","_etag":"\"0000a302-0000-0700-0000-5df0423b0000\"","_ts":1576026683}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"I5QhAA==","_etag":"\"00004b04-0000-0700-0000-5eebd14a0000\"","_ts":1592512842}}}' headers: cache-control: - no-store, no-cache content-length: - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:52 GMT + - Thu, 18 Jun 2020 20:41:08 GMT pragma: - no-cache server: @@ -1109,7 +2138,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1127,26 +2156,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings","name":"B+mW","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings","name":"0-4u","properties":{"resource":{"throughput":1000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '469' + - '444' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:54 GMT + - Thu, 18 Jun 2020 20:41:10 GMT pragma: - no-cache server: @@ -1160,7 +2189,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1182,30 +2211,30 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/88da10e7-90eb-47a9-b91a-3264bab06877?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/858abbcf-3398-432b-8eba-01e3f3f7d23e?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:55 GMT + - Thu, 18 Jun 2020 20:41:12 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default/operationResults/88da10e7-90eb-47a9-b91a-3264bab06877?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default/operationResults/858abbcf-3398-432b-8eba-01e3f3f7d23e?api-version=2020-04-01 pragma: - no-cache server: @@ -1215,7 +2244,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -1235,24 +2264,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/88da10e7-90eb-47a9-b91a-3264bab06877?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/858abbcf-3398-432b-8eba-01e3f3f7d23e?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/88da10e7-90eb-47a9-b91a-3264bab06877?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/858abbcf-3398-432b-8eba-01e3f3f7d23e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:12:25 GMT + - Thu, 18 Jun 2020 20:41:43 GMT pragma: - no-cache server: @@ -1266,7 +2295,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1284,24 +2313,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings","name":"B+mW","properties":{"resource":{"throughput":2000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings","name":"0-4u","properties":{"resource":{"throughput":2000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '469' + - '444' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:12:26 GMT + - Thu, 18 Jun 2020 20:41:43 GMT pragma: - no-cache server: @@ -1315,13 +2344,13 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok - request: body: '{"properties": {"resource": {"id": "cli000004", "shardKey": {"theShardKey": - "Hash"}}, "options": {"Throughput": "1000"}}}' + "Hash"}}, "options": {"throughput": 1000}}}' headers: Accept: - application/json @@ -1332,36 +2361,36 @@ interactions: Connection: - keep-alive Content-Length: - - '127' + - '125' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -d -n --shard --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8bfec515-77dd-485d-b589-b563fdd39a69?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf56b560-0c5d-4be3-9ccb-433939e2e5c5?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb/collections/cliq5mu2xt4zcal?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg/collections/cliwow7ngwcw4on?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:12:28 GMT + - Thu, 18 Jun 2020 20:41:46 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/operationResults/8bfec515-77dd-485d-b589-b563fdd39a69?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/operationResults/cf56b560-0c5d-4be3-9ccb-433939e2e5c5?api-version=2020-04-01 pragma: - no-cache server: @@ -1371,9 +2400,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1391,24 +2420,24 @@ interactions: ParameterSetName: - -g -a -d -n --shard --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8bfec515-77dd-485d-b589-b563fdd39a69?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf56b560-0c5d-4be3-9ccb-433939e2e5c5?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8bfec515-77dd-485d-b589-b563fdd39a69?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/cf56b560-0c5d-4be3-9ccb-433939e2e5c5?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:12:58 GMT + - Thu, 18 Jun 2020 20:42:16 GMT pragma: - no-cache server: @@ -1422,7 +2451,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1440,24 +2469,24 @@ interactions: ParameterSetName: - -g -a -d -n --shard --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"M75OANnsXFk=","_etag":"\"0000a902-0000-0700-0000-5df042800000\"","_ts":1576026752,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections","name":"cli000004","properties":{"resource":{"id":"cli000004","_rid":"I5QhAPbHaEQ=","_etag":"\"00005104-0000-0700-0000-5eebd18f0000\"","_ts":1592512911,"shardKey":{"theShardKey":"Hash"},"indexes":[{"key":{"keys":["_id"]},"options":{}},{"key":{"keys":["DocumentDBDefaultIndex"]},"options":{}}]}}}' headers: cache-control: - no-store, no-cache content-length: - - '602' + - '659' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb/collections/cliq5mu2xt4zcal?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg/collections/cliwow7ngwcw4on?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:12:59 GMT + - Thu, 18 Jun 2020 20:42:17 GMT pragma: - no-cache server: @@ -1471,7 +2500,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1489,26 +2518,26 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings","name":"3FsT","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings","name":"ndhp","properties":{"resource":{"throughput":1000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '509' + - '484' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb/collections/cliq5mu2xt4zcal/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg/collections/cliwow7ngwcw4on/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:00 GMT + - Thu, 18 Jun 2020 20:42:20 GMT pragma: - no-cache server: @@ -1522,7 +2551,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1544,30 +2573,30 @@ interactions: ParameterSetName: - -g -a -d -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5f42c6c5-66da-411e-910a-0b3fea052442?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f228e97-1205-4dbf-a8a4-7c64a280a14f?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb/collections/cliq5mu2xt4zcal/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg/collections/cliwow7ngwcw4on/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:02 GMT + - Thu, 18 Jun 2020 20:42:20 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default/operationResults/5f42c6c5-66da-411e-910a-0b3fea052442?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default/operationResults/4f228e97-1205-4dbf-a8a4-7c64a280a14f?api-version=2020-04-01 pragma: - no-cache server: @@ -1577,9 +2606,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 202 message: Accepted @@ -1597,24 +2626,24 @@ interactions: ParameterSetName: - -g -a -d -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5f42c6c5-66da-411e-910a-0b3fea052442?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f228e97-1205-4dbf-a8a4-7c64a280a14f?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5f42c6c5-66da-411e-910a-0b3fea052442?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4f228e97-1205-4dbf-a8a4-7c64a280a14f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:33 GMT + - Thu, 18 Jun 2020 20:42:52 GMT pragma: - no-cache server: @@ -1628,7 +2657,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1646,24 +2675,24 @@ interactions: ParameterSetName: - -g -a -d -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings","name":"3FsT","properties":{"resource":{"throughput":2000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/mongodbDatabases/cli000003/collections/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings","name":"ndhp","properties":{"resource":{"throughput":2000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '509' + - '484' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughputqyrv5to3lmkeyljsjoxx7jhkdskmyk/providers/Microsoft.DocumentDB/databaseAccounts/clijgh5vl7sqroh/mongodbDatabases/clig6zaza22jknb/collections/cliq5mu2xt4zcal/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_mongodb_resource_throughput6maof5kq4f4mi4o4rxe5ofb3c4xlsm/providers/Microsoft.DocumentDB/databaseAccounts/clidsyinqm5rt3k/mongodbDatabases/clinxlzv2vfafgg/collections/cliwow7ngwcw4on/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:34 GMT + - Thu, 18 Jun 2020 20:42:52 GMT pragma: - no-cache server: @@ -1677,7 +2706,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_add.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_add.yaml index 5b6cf56a6ca..23308b65734 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_add.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_add.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T09:16:41Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T04:45:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:16:44 GMT + - Tue, 07 Jul 2020 04:45:35 GMT expires: - '-1' pragma: @@ -64,8 +64,8 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -73,15 +73,15 @@ interactions: response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"f6b3d212-4e13-42a1-b7a3-8f5d4a013335\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"394fd01e-231a-49de-8f00-dc9729f8f17c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"af52e6ae-ffbd-4906-9107-c137f692c545\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9e803c0f-2a9c-49d5-9525-7ea53847caf5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"f6b3d212-4e13-42a1-b7a3-8f5d4a013335\\\"\",\r\n + \ \"etag\": \"W/\\\"394fd01e-231a-49de-8f00-dc9729f8f17c\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -92,7 +92,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0319b539-ff50-4abb-a7a3-cc06f97eb786?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b8cbead5-b4d2-4ff4-941f-13ccf8842cae?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -100,7 +100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:16:51 GMT + - Tue, 07 Jul 2020 04:45:36 GMT expires: - '-1' pragma: @@ -113,9 +113,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f8056842-cc84-40cc-a922-02693246f329 + - 25958ed4-57aa-4af7-bb0f-a4f6d9584582 x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1199' status: code: 201 message: Created @@ -133,10 +133,10 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0319b539-ff50-4abb-a7a3-cc06f97eb786?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b8cbead5-b4d2-4ff4-941f-13ccf8842cae?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -148,7 +148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:16:55 GMT + - Tue, 07 Jul 2020 04:45:39 GMT expires: - '-1' pragma: @@ -165,7 +165,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d18d56e-3879-4c1a-9363-e93a234791e9 + - cd786c8f-7811-47d1-95c5-8e71417c6ac7 status: code: 200 message: OK @@ -183,22 +183,22 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"0ae58955-918e-42cb-a217-cd042554a8eb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4146714e-26e8-4289-a042-12bcd03fb7ad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"af52e6ae-ffbd-4906-9107-c137f692c545\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9e803c0f-2a9c-49d5-9525-7ea53847caf5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"0ae58955-918e-42cb-a217-cd042554a8eb\\\"\",\r\n + \ \"etag\": \"W/\\\"4146714e-26e8-4289-a042-12bcd03fb7ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -213,9 +213,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:16:55 GMT + - Tue, 07 Jul 2020 04:45:39 GMT etag: - - W/"0ae58955-918e-42cb-a217-cd042554a8eb" + - W/"4146714e-26e8-4289-a042-12bcd03fb7ad" expires: - '-1' pragma: @@ -232,7 +232,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 72b9ea24-d925-46ef-9eff-43c2f482e889 + - c139a070-57c6-4bd3-b933-c9046a80c05b status: code: 200 message: OK @@ -250,24 +250,24 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T09:16:41Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T04:45:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:16:56 GMT + - Tue, 07 Jul 2020 04:45:40 GMT expires: - '-1' pragma: @@ -284,7 +284,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "isVirtualNetworkFilterEnabled": true}}' + "databaseAccountOfferType": "Standard", "isVirtualNetworkFilterEnabled": true, + "apiProperties": {}}}' headers: Accept: - application/json @@ -295,41 +296,41 @@ interactions: Connection: - keep-alive Content-Length: - - '237' + - '258' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T04:45:45.0955076Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1629' + - '1786' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:17:04 GMT + - Tue, 07 Jul 2020 04:45:45 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 pragma: - no-cache server: @@ -345,7 +346,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 200 message: Ok @@ -363,10 +364,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -376,11 +377,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:17:35 GMT + - Tue, 07 Jul 2020 04:46:15 GMT pragma: - no-cache server: @@ -412,10 +413,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -425,11 +426,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:18:06 GMT + - Tue, 07 Jul 2020 04:46:46 GMT pragma: - no-cache server: @@ -461,10 +462,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -474,11 +475,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:18:37 GMT + - Tue, 07 Jul 2020 04:47:18 GMT pragma: - no-cache server: @@ -510,10 +511,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -523,11 +524,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:19:07 GMT + - Tue, 07 Jul 2020 04:47:47 GMT pragma: - no-cache server: @@ -559,10 +560,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -572,11 +573,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:19:37 GMT + - Tue, 07 Jul 2020 04:48:18 GMT pragma: - no-cache server: @@ -608,10 +609,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -621,11 +622,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:20:07 GMT + - Tue, 07 Jul 2020 04:48:48 GMT pragma: - no-cache server: @@ -657,10 +658,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -670,11 +671,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:20:38 GMT + - Tue, 07 Jul 2020 04:49:18 GMT pragma: - no-cache server: @@ -706,10 +707,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -719,11 +720,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:21:10 GMT + - Tue, 07 Jul 2020 04:49:49 GMT pragma: - no-cache server: @@ -755,10 +756,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -768,11 +769,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:21:40 GMT + - Tue, 07 Jul 2020 04:50:19 GMT pragma: - no-cache server: @@ -804,10 +805,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -817,11 +818,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:22:10 GMT + - Tue, 07 Jul 2020 04:50:49 GMT pragma: - no-cache server: @@ -853,10 +854,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -866,11 +867,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:22:41 GMT + - Tue, 07 Jul 2020 04:51:19 GMT pragma: - no-cache server: @@ -902,10 +903,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -915,11 +916,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:23:11 GMT + - Tue, 07 Jul 2020 04:51:49 GMT pragma: - no-cache server: @@ -951,10 +952,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -964,11 +965,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:23:41 GMT + - Tue, 07 Jul 2020 04:52:19 GMT pragma: - no-cache server: @@ -1000,10 +1001,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1013,11 +1014,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:24:11 GMT + - Tue, 07 Jul 2020 04:52:50 GMT pragma: - no-cache server: @@ -1049,10 +1050,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1062,11 +1063,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:24:42 GMT + - Tue, 07 Jul 2020 04:53:20 GMT pragma: - no-cache server: @@ -1098,10 +1099,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1111,11 +1112,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:25:13 GMT + - Tue, 07 Jul 2020 04:53:50 GMT pragma: - no-cache server: @@ -1147,10 +1148,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1160,11 +1161,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:25:43 GMT + - Tue, 07 Jul 2020 04:54:20 GMT pragma: - no-cache server: @@ -1196,10 +1197,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1209,11 +1210,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:26:13 GMT + - Tue, 07 Jul 2020 04:54:50 GMT pragma: - no-cache server: @@ -1245,10 +1246,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1258,11 +1259,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:26:44 GMT + - Tue, 07 Jul 2020 04:55:21 GMT pragma: - no-cache server: @@ -1294,10 +1295,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1307,11 +1308,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:27:15 GMT + - Tue, 07 Jul 2020 04:55:51 GMT pragma: - no-cache server: @@ -1343,10 +1344,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1356,11 +1357,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:27:46 GMT + - Tue, 07 Jul 2020 04:56:21 GMT pragma: - no-cache server: @@ -1392,24 +1393,24 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '22' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0cec0ea3-9bb2-4962-af45-aed345ae3473?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:28:17 GMT + - Tue, 07 Jul 2020 04:56:52 GMT pragma: - no-cache server: @@ -1441,29 +1442,24 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '2034' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:28:17 GMT + - Tue, 07 Jul 2020 04:57:22 GMT pragma: - no-cache server: @@ -1495,31 +1491,519 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:57:52 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:58:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:58:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:59:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:59:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:00:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:00:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:01:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:01:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d087c3a-d100-4de3-b543-364ae887061a?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:02:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:02.6732401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2034' + - '2191' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:28:18 GMT + - Tue, 07 Jul 2020 05:02:25 GMT pragma: - no-cache server: @@ -1545,37 +2029,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - cosmosdb network-rule add + - cosmosdb create Connection: - keep-alive ParameterSetName: - - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint + - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:02.6732401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2034' + - '2191' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:28:21 GMT + - Tue, 07 Jul 2020 05:02:25 GMT pragma: - no-cache server: @@ -1594,8 +2078,7 @@ interactions: code: 200 message: Ok - request: - body: 'b''{"properties": {"virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004", - "ignoreMissingVNetServiceEndpoint": true}]}}''' + body: null headers: Accept: - application/json @@ -1605,42 +2088,34 @@ interactions: - cosmosdb network-rule add Connection: - keep-alive - Content-Length: - - '371' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:02.6732401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 cache-control: - no-store, no-cache content-length: - - '2030' + - '2191' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:28:25 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + - Tue, 07 Jul 2020 05:02:26 GMT pragma: - no-cache server: @@ -1655,13 +2130,12 @@ interactions: - nosniff x-ms-gatewayversion: - version=2.11.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1164' status: code: 200 message: Ok - request: - body: null + body: 'b''{"properties": {"virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004", + "ignoreMissingVNetServiceEndpoint": true}]}}''' headers: Accept: - application/json @@ -1671,27 +2145,42 @@ interactions: - cosmosdb network-rule add Connection: - keep-alive + Content-Length: + - '371' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + accept-language: + - en-US + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:02.6732401Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '21' + - '2187' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:28:56 GMT + - Tue, 07 Jul 2020 05:02:33 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 pragma: - no-cache server: @@ -1706,6 +2195,8 @@ interactions: - nosniff x-ms-gatewayversion: - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: Ok @@ -1723,10 +2214,10 @@ interactions: ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1736,11 +2227,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:29:26 GMT + - Tue, 07 Jul 2020 05:03:03 GMT pragma: - no-cache server: @@ -1772,10 +2263,10 @@ interactions: ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1785,11 +2276,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:29:56 GMT + - Tue, 07 Jul 2020 05:03:33 GMT pragma: - no-cache server: @@ -1821,10 +2312,10 @@ interactions: ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1834,11 +2325,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:30:27 GMT + - Tue, 07 Jul 2020 05:04:03 GMT pragma: - no-cache server: @@ -1870,10 +2361,10 @@ interactions: ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1883,11 +2374,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:30:57 GMT + - Tue, 07 Jul 2020 05:04:34 GMT pragma: - no-cache server: @@ -1919,10 +2410,10 @@ interactions: ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1932,11 +2423,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:31:28 GMT + - Tue, 07 Jul 2020 05:05:03 GMT pragma: - no-cache server: @@ -1968,10 +2459,10 @@ interactions: ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1981,11 +2472,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e87fe304-ef03-42bd-8f5c-477eb700b58f?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/42e97855-2adb-486c-ac67-a45206260dae?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:32:00 GMT + - Tue, 07 Jul 2020 05:05:34 GMT pragma: - no-cache server: @@ -2017,29 +2508,29 @@ interactions: ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:02.6732401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2359' + - '2516' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:32:00 GMT + - Tue, 07 Jul 2020 05:05:34 GMT pragma: - no-cache server: @@ -2071,31 +2562,31 @@ interactions: ParameterSetName: - -n -g --virtual-network --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:02.6732401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2359' + - '2516' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:32:01 GMT + - Tue, 07 Jul 2020 05:05:34 GMT pragma: - no-cache server: @@ -2127,31 +2618,31 @@ interactions: ParameterSetName: - -n -g --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:02.6732401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2359' + - '2516' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:32:01 GMT + - Tue, 07 Jul 2020 05:05:35 GMT pragma: - no-cache server: @@ -2188,31 +2679,31 @@ interactions: ParameterSetName: - -n -g --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:02.6732401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2359' + - '2516' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:32:04 GMT + - Tue, 07 Jul 2020 05:05:41 GMT pragma: - no-cache server: @@ -2228,7 +2719,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 200 message: Ok @@ -2246,31 +2737,31 @@ interactions: ParameterSetName: - -n -g --vnet-name --subnet --ignore-missing-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:02.6732401Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c95c06e1-f49b-4939-b8d8-cac61ae814a8","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2359' + - '2516' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountg7uwwihhray6e3uxrh3bt5zethtifyqvisup472rvpukamb23e/providers/Microsoft.DocumentDB/databaseAccounts/clinwj2iycpnctvzuwqtb36t5hxvt3p2nli56p5i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountxo7fv7d5ulda26h6ziboyvtujecbmivh7q5m3qsw6mokgcywvk/providers/Microsoft.DocumentDB/databaseAccounts/clipaw2ij57gu3hmjswbqn7sfu4aaikgjnvetqna?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:32:05 GMT + - Tue, 07 Jul 2020 05:05:42 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_list.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_list.yaml index fa3235a2ad6..3236404b421 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_list.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_list.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T09:32:29Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T04:45:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:32:36 GMT + - Tue, 07 Jul 2020 04:45:36 GMT expires: - '-1' pragma: @@ -64,8 +64,8 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -73,15 +73,15 @@ interactions: response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"5feb4d48-9049-43e4-90e7-a7a68dfd1f9f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"70646a02-8dce-492a-9d73-9915365aea1a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2c7ae737-beed-4f1b-b538-225cce6cc275\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5eb0a4f3-6779-4688-8042-840f57491a65\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"5feb4d48-9049-43e4-90e7-a7a68dfd1f9f\\\"\",\r\n + \ \"etag\": \"W/\\\"70646a02-8dce-492a-9d73-9915365aea1a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -92,7 +92,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0f3268fa-1873-43c8-b054-53dca59ad8d7?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5d59994-154d-40a9-a04c-1df0dca57ba8?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -100,7 +100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:32:42 GMT + - Tue, 07 Jul 2020 04:45:37 GMT expires: - '-1' pragma: @@ -113,9 +113,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d32edb6-4495-42b7-83ee-507c158b39cf + - 95d9c10c-5468-4a91-983e-db2becd16b5c x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -133,10 +133,10 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0f3268fa-1873-43c8-b054-53dca59ad8d7?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e5d59994-154d-40a9-a04c-1df0dca57ba8?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -148,7 +148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:32:47 GMT + - Tue, 07 Jul 2020 04:45:40 GMT expires: - '-1' pragma: @@ -158,14 +158,10 @@ 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-arm-service-request-id: - - 1b9d67f3-53cb-477c-a9d5-cd6136113fe0 + - 92063974-6203-4368-b288-f91d8a8d8ba6 status: code: 200 message: OK @@ -183,22 +179,22 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"2c3f6b13-ca32-40ff-9526-cf5012d1c07a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"71ff3334-fd33-437f-abb5-2401e91c65e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2c7ae737-beed-4f1b-b538-225cce6cc275\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"5eb0a4f3-6779-4688-8042-840f57491a65\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"2c3f6b13-ca32-40ff-9526-cf5012d1c07a\\\"\",\r\n + \ \"etag\": \"W/\\\"71ff3334-fd33-437f-abb5-2401e91c65e2\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -213,9 +209,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:32:47 GMT + - Tue, 07 Jul 2020 04:45:40 GMT etag: - - W/"2c3f6b13-ca32-40ff-9526-cf5012d1c07a" + - W/"71ff3334-fd33-437f-abb5-2401e91c65e2" expires: - '-1' pragma: @@ -225,14 +221,10 @@ 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-arm-service-request-id: - - fadb8951-1754-4571-a3ee-880dc210773d + - a757d194-f39c-46af-9113-28630c2960b4 status: code: 200 message: OK @@ -250,8 +242,8 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET @@ -259,7 +251,7 @@ interactions: response: body: string: "{\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"2c3f6b13-ca32-40ff-9526-cf5012d1c07a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"71ff3334-fd33-437f-abb5-2401e91c65e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -272,9 +264,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:32:48 GMT + - Tue, 07 Jul 2020 04:45:40 GMT etag: - - W/"2c3f6b13-ca32-40ff-9526-cf5012d1c07a" + - W/"71ff3334-fd33-437f-abb5-2401e91c65e2" expires: - '-1' pragma: @@ -291,7 +283,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 37dc5ff4-a134-4b46-8b82-db138bc82390 + - 23a51f6c-fe9b-4757-a7e8-ebbc6d3ee58b status: code: 200 message: OK @@ -316,8 +308,8 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -325,7 +317,7 @@ interactions: response: body: string: "{\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"0194b156-06b0-4fdb-8dc0-2ba19f896834\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"19d38c0f-0588-4387-b914-7263b154f020\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n \ \"service\": \"Microsoft.AzureCosmosDB\",\r\n \"locations\": @@ -334,7 +326,7 @@ interactions: \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/544cf2a9-a866-4f0d-86d2-ca53faedbe58?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/04b985c0-31c4-4b05-bf7c-75c02dfab660?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -342,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:32:49 GMT + - Tue, 07 Jul 2020 04:45:41 GMT expires: - '-1' pragma: @@ -359,9 +351,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b51c4ef5-e0bd-423c-9f35-d05df148f2af + - 64931066-875d-4ee9-b6c7-f6097bf454dc x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -379,10 +371,10 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/544cf2a9-a866-4f0d-86d2-ca53faedbe58?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/04b985c0-31c4-4b05-bf7c-75c02dfab660?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -394,7 +386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:32:53 GMT + - Tue, 07 Jul 2020 04:45:45 GMT expires: - '-1' pragma: @@ -411,7 +403,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cc40765d-8aff-458e-a8ea-b0a7a2488129 + - 7a294f1c-78f5-459c-bf8a-f296f7d00165 status: code: 200 message: OK @@ -429,14 +421,14 @@ interactions: ParameterSetName: - -g --vnet-name -n --service-endpoints User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"456fca2c-bfba-4951-8300-f9572d7c1e63\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"2acd5f8f-5aa2-42ca-a923-4ba63a721af3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"service\": \"Microsoft.AzureCosmosDB\",\r\n \"locations\": @@ -451,9 +443,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:32:53 GMT + - Tue, 07 Jul 2020 04:45:45 GMT etag: - - W/"456fca2c-bfba-4951-8300-f9572d7c1e63" + - W/"2acd5f8f-5aa2-42ca-a923-4ba63a721af3" expires: - '-1' pragma: @@ -470,7 +462,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03f471b9-9767-4be0-809b-0f380e506138 + - c08205f9-e0ec-47fe-b78f-5174ccabd973 status: code: 200 message: OK @@ -488,24 +480,24 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T09:32:29Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T04:45:34Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:33:04 GMT + - Tue, 07 Jul 2020 04:45:45 GMT expires: - '-1' pragma: @@ -523,7 +515,8 @@ interactions: body: 'b''{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": "Standard", "isVirtualNetworkFilterEnabled": true, - "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004"}]}}''' + "virtualNetworkRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004"}], + "apiProperties": {}}}''' headers: Accept: - application/json @@ -534,41 +527,41 @@ interactions: Connection: - keep-alive Content-Length: - - '550' + - '571' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":false}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T04:45:51.8103422Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":false}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c8228468-5f90-42a5-90fe-e187799b2ce3","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1955' + - '2112' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountukg5ddiizmoy746rfff54v775sctqlfwcjjxosnsb26gdicxpq/providers/Microsoft.DocumentDB/databaseAccounts/cliqeh24x72znupsdrpmnf2w5a4b2iwa2bpfp5ta?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountzgjf5ovslqa6rnqs6n7tz436m6mf5bzjxevd6heisz3735yzrp/providers/Microsoft.DocumentDB/databaseAccounts/clindqb7lgrhmnta2brbyq3xa4wfchr3v4j3hkot?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:33:11 GMT + - Tue, 07 Jul 2020 04:45:51 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 pragma: - no-cache server: @@ -584,7 +577,448 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network --virtual-network-rule + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:46:22 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network --virtual-network-rule + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:46:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network --virtual-network-rule + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:47:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network --virtual-network-rule + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:47:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network --virtual-network-rule + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:48:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network --virtual-network-rule + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:48:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network --virtual-network-rule + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:49:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network --virtual-network-rule + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:49:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network --virtual-network-rule + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:50:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -602,10 +1036,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -615,11 +1049,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:33:44 GMT + - Tue, 07 Jul 2020 04:50:55 GMT pragma: - no-cache server: @@ -651,10 +1085,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -664,11 +1098,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:34:14 GMT + - Tue, 07 Jul 2020 04:51:26 GMT pragma: - no-cache server: @@ -700,10 +1134,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -713,11 +1147,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:34:44 GMT + - Tue, 07 Jul 2020 04:51:56 GMT pragma: - no-cache server: @@ -749,10 +1183,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -762,11 +1196,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:35:15 GMT + - Tue, 07 Jul 2020 04:52:26 GMT pragma: - no-cache server: @@ -798,10 +1232,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -811,11 +1245,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:35:45 GMT + - Tue, 07 Jul 2020 04:52:56 GMT pragma: - no-cache server: @@ -847,10 +1281,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -860,11 +1294,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:36:16 GMT + - Tue, 07 Jul 2020 04:53:27 GMT pragma: - no-cache server: @@ -896,10 +1330,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -909,11 +1343,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:36:49 GMT + - Tue, 07 Jul 2020 04:53:57 GMT pragma: - no-cache server: @@ -945,10 +1379,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -958,11 +1392,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:37:19 GMT + - Tue, 07 Jul 2020 04:54:27 GMT pragma: - no-cache server: @@ -994,10 +1428,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1007,11 +1441,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:37:49 GMT + - Tue, 07 Jul 2020 04:54:57 GMT pragma: - no-cache server: @@ -1043,10 +1477,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1056,11 +1490,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:38:21 GMT + - Tue, 07 Jul 2020 04:55:28 GMT pragma: - no-cache server: @@ -1092,10 +1526,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1105,11 +1539,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:38:52 GMT + - Tue, 07 Jul 2020 04:55:59 GMT pragma: - no-cache server: @@ -1141,10 +1575,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1154,11 +1588,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:39:22 GMT + - Tue, 07 Jul 2020 04:56:29 GMT pragma: - no-cache server: @@ -1190,10 +1624,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1203,11 +1637,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:39:53 GMT + - Tue, 07 Jul 2020 04:56:59 GMT pragma: - no-cache server: @@ -1239,10 +1673,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1252,11 +1686,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:40:23 GMT + - Tue, 07 Jul 2020 04:57:29 GMT pragma: - no-cache server: @@ -1288,10 +1722,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1301,11 +1735,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:40:53 GMT + - Tue, 07 Jul 2020 04:57:59 GMT pragma: - no-cache server: @@ -1337,10 +1771,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1350,11 +1784,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:41:24 GMT + - Tue, 07 Jul 2020 04:58:29 GMT pragma: - no-cache server: @@ -1386,10 +1820,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1399,11 +1833,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:41:54 GMT + - Tue, 07 Jul 2020 04:58:59 GMT pragma: - no-cache server: @@ -1435,10 +1869,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1448,11 +1882,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:42:26 GMT + - Tue, 07 Jul 2020 04:59:29 GMT pragma: - no-cache server: @@ -1484,10 +1918,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1497,11 +1931,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:42:58 GMT + - Tue, 07 Jul 2020 05:00:00 GMT pragma: - no-cache server: @@ -1533,10 +1967,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1546,11 +1980,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:43:28 GMT + - Tue, 07 Jul 2020 05:00:30 GMT pragma: - no-cache server: @@ -1582,10 +2016,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1595,11 +2029,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:43:59 GMT + - Tue, 07 Jul 2020 05:01:00 GMT pragma: - no-cache server: @@ -1631,10 +2065,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1644,11 +2078,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:44:30 GMT + - Tue, 07 Jul 2020 05:01:30 GMT pragma: - no-cache server: @@ -1680,10 +2114,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1693,11 +2127,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:45:00 GMT + - Tue, 07 Jul 2020 05:02:01 GMT pragma: - no-cache server: @@ -1729,10 +2163,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1742,11 +2176,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:45:30 GMT + - Tue, 07 Jul 2020 05:02:31 GMT pragma: - no-cache server: @@ -1778,10 +2212,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1791,11 +2225,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7c33690f-a277-4094-b095-61fe6d4ee5e0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/41f08a81-9b2f-4a2d-9b7a-8b56110dd05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:46:01 GMT + - Tue, 07 Jul 2020 05:03:01 GMT pragma: - no-cache server: @@ -1827,29 +2261,29 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":false}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:40.9648239Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":false}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c8228468-5f90-42a5-90fe-e187799b2ce3","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2360' + - '2517' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountukg5ddiizmoy746rfff54v775sctqlfwcjjxosnsb26gdicxpq/providers/Microsoft.DocumentDB/databaseAccounts/cliqeh24x72znupsdrpmnf2w5a4b2iwa2bpfp5ta?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountzgjf5ovslqa6rnqs6n7tz436m6mf5bzjxevd6heisz3735yzrp/providers/Microsoft.DocumentDB/databaseAccounts/clindqb7lgrhmnta2brbyq3xa4wfchr3v4j3hkot?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:46:02 GMT + - Tue, 07 Jul 2020 05:03:01 GMT pragma: - no-cache server: @@ -1881,31 +2315,31 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network --virtual-network-rule User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":false}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:40.9648239Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":false}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c8228468-5f90-42a5-90fe-e187799b2ce3","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2360' + - '2517' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountukg5ddiizmoy746rfff54v775sctqlfwcjjxosnsb26gdicxpq/providers/Microsoft.DocumentDB/databaseAccounts/cliqeh24x72znupsdrpmnf2w5a4b2iwa2bpfp5ta?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountzgjf5ovslqa6rnqs6n7tz436m6mf5bzjxevd6heisz3735yzrp/providers/Microsoft.DocumentDB/databaseAccounts/clindqb7lgrhmnta2brbyq3xa4wfchr3v4j3hkot?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:46:02 GMT + - Tue, 07 Jul 2020 05:03:02 GMT pragma: - no-cache server: @@ -1937,31 +2371,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":false}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:02:40.9648239Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":false}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"c8228468-5f90-42a5-90fe-e187799b2ce3","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2360' + - '2517' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accountukg5ddiizmoy746rfff54v775sctqlfwcjjxosnsb26gdicxpq/providers/Microsoft.DocumentDB/databaseAccounts/cliqeh24x72znupsdrpmnf2w5a4b2iwa2bpfp5ta?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountzgjf5ovslqa6rnqs6n7tz436m6mf5bzjxevd6heisz3735yzrp/providers/Microsoft.DocumentDB/databaseAccounts/clindqb7lgrhmnta2brbyq3xa4wfchr3v4j3hkot?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:46:03 GMT + - Tue, 07 Jul 2020 05:03:03 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_remove.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_remove.yaml index e71c9383302..2ef35889b62 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_remove.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_network_rule_remove.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T09:46:25Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T04:45:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:46:29 GMT + - Tue, 07 Jul 2020 04:45:35 GMT expires: - '-1' pragma: @@ -64,8 +64,8 @@ interactions: ParameterSetName: - --name --resource-group --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -73,15 +73,15 @@ interactions: response: body: string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"af766f87-1c17-4633-a5b2-fb1a17b3f401\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"02a58a99-bd41-48fb-83e0-7ee88e234dc9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"a448df75-6d9a-4d94-ba70-e1d542409422\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"2ac6bc69-d34d-4ed8-a992-ef3d20fcf072\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"af766f87-1c17-4633-a5b2-fb1a17b3f401\\\"\",\r\n + \ \"etag\": \"W/\\\"02a58a99-bd41-48fb-83e0-7ee88e234dc9\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -92,7 +92,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fce7835-236c-4c79-ba32-3d4da6e90833?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2f903e7-edac-44f9-b1ec-16ad830bb5c3?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -100,7 +100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 15 May 2020 09:46:36 GMT + - Tue, 07 Jul 2020 04:45:36 GMT expires: - '-1' pragma: @@ -113,12 +113,488 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 88bd85d0-54a0-4b77-a3f5-a4040367d7ac + - ab81746d-bd18-46e0-b4af-52d3c154e539 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --subnet-name + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f2f903e7-edac-44f9-b1ec-16ad830bb5c3?api-version=2020-05-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 07 Jul 2020 04:45:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9e68701b-6e4c-413d-bded-7479e80c76d6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --subnet-name + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n + \ \"etag\": \"W/\\\"11b417d8-403f-4270-a69e-1e2df9759d55\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"2ac6bc69-d34d-4ed8-a992-ef3d20fcf072\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n + \ \"etag\": \"W/\\\"11b417d8-403f-4270-a69e-1e2df9759d55\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1610' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 07 Jul 2020 04:45:41 GMT + etag: + - W/"11b417d8-403f-4270-a69e-1e2df9759d55" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3f2620f9-fe94-4845-8590-cd06a28991e2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T04:45:35Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 07 Jul 2020 04:45:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "isVirtualNetworkFilterEnabled": true, + "apiProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '258' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T04:45:46.947054Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + cache-control: + - no-store, no-cache + content-length: + - '1785' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:45:46 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:46:17 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:46:48 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:47:19 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:47:50 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:48:20 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: - code: 201 - message: Created + code: 200 + message: Ok - request: body: null headers: @@ -127,35 +603,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - cosmosdb create Connection: - keep-alive ParameterSetName: - - --name --resource-group --subnet-name + - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fce7835-236c-4c79-ba32-3d4da6e90833?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"Dequeued"}' headers: cache-control: - - no-cache + - no-store, no-cache content-length: - - '30' + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 15 May 2020 09:46:39 GMT - expires: - - '-1' + - Tue, 07 Jul 2020 04:48:50 GMT pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -164,11 +639,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 1aca4151-9593-4fb0-a9b5-7be10010028d + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 - message: OK + message: Ok - request: body: null headers: @@ -177,35 +652,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - cosmosdb create Connection: - keep-alive ParameterSetName: - - --name --resource-group --subnet-name + - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fce7835-236c-4c79-ba32-3d4da6e90833?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"Dequeued"}' headers: cache-control: - - no-cache + - no-store, no-cache content-length: - - '30' + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 15 May 2020 09:46:50 GMT - expires: - - '-1' + - Tue, 07 Jul 2020 04:49:20 GMT pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -214,11 +688,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 46f91b51-c802-4e1d-8fbf-ce9da7e87109 + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 - message: OK + message: Ok - request: body: null headers: @@ -227,35 +701,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - cosmosdb create Connection: - keep-alive ParameterSetName: - - --name --resource-group --subnet-name + - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fce7835-236c-4c79-ba32-3d4da6e90833?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Dequeued"}' headers: cache-control: - - no-cache + - no-store, no-cache content-length: - - '29' + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 15 May 2020 09:47:00 GMT - expires: - - '-1' + - Tue, 07 Jul 2020 04:49:51 GMT pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -264,11 +737,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - f2da0c60-acf1-4f07-84fa-02b4f3dbd630 + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 - message: OK + message: Ok - request: body: null headers: @@ -277,52 +750,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - cosmosdb create Connection: - keep-alive ParameterSetName: - - --name --resource-group --subnet-name + - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: - string: "{\r\n \"name\": \"cli000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003\",\r\n - \ \"etag\": \"W/\\\"85ac89f0-3693-4cc0-8e6f-6d18f884291b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"a448df75-6d9a-4d94-ba70-e1d542409422\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"cli000004\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004\",\r\n - \ \"etag\": \"W/\\\"85ac89f0-3693-4cc0-8e6f-6d18f884291b\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: '{"status":"Dequeued"}' headers: cache-control: - - no-cache + - no-store, no-cache content-length: - - '1610' + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 15 May 2020 09:47:00 GMT - etag: - - W/"85ac89f0-3693-4cc0-8e6f-6d18f884291b" - expires: - - '-1' + - Tue, 07 Jul 2020 04:50:21 GMT pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -331,11 +786,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - ae28555d-82a4-4883-aee0-e4766313cab0 + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 - message: OK + message: Ok - request: body: null headers: @@ -350,41 +805,92 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-15T09:46:25Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"status":"Dequeued"}' headers: cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:50:51 GMT + pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-virtual-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache content-length: - - '471' + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - - application/json; charset=utf-8 + - application/json date: - - Fri, 15 May 2020 09:47:01 GMT - expires: - - '-1' + - Tue, 07 Jul 2020 04:51:21 GMT pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 - message: OK + message: Ok - request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "isVirtualNetworkFilterEnabled": true}}' + body: null headers: Accept: - application/json @@ -394,42 +900,27 @@ interactions: - cosmosdb create Connection: - keep-alive - Content-Length: - - '237' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + string: '{"status":"Dequeued"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 cache-control: - no-store, no-cache content-length: - - '1629' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:47:21 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - Tue, 07 Jul 2020 04:51:52 GMT pragma: - no-cache server: @@ -444,8 +935,6 @@ interactions: - nosniff x-ms-gatewayversion: - version=2.11.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1192' status: code: 200 message: Ok @@ -463,10 +952,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -476,11 +965,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:47:51 GMT + - Tue, 07 Jul 2020 04:52:22 GMT pragma: - no-cache server: @@ -512,10 +1001,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -525,11 +1014,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:48:22 GMT + - Tue, 07 Jul 2020 04:52:51 GMT pragma: - no-cache server: @@ -561,10 +1050,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -574,11 +1063,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:48:52 GMT + - Tue, 07 Jul 2020 04:53:21 GMT pragma: - no-cache server: @@ -610,10 +1099,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -623,11 +1112,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:49:22 GMT + - Tue, 07 Jul 2020 04:53:53 GMT pragma: - no-cache server: @@ -659,10 +1148,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -672,11 +1161,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:49:53 GMT + - Tue, 07 Jul 2020 04:54:23 GMT pragma: - no-cache server: @@ -708,10 +1197,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -721,11 +1210,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:50:23 GMT + - Tue, 07 Jul 2020 04:54:52 GMT pragma: - no-cache server: @@ -757,10 +1246,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -770,11 +1259,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:50:53 GMT + - Tue, 07 Jul 2020 04:55:22 GMT pragma: - no-cache server: @@ -806,10 +1295,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -819,11 +1308,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:51:24 GMT + - Tue, 07 Jul 2020 04:55:53 GMT pragma: - no-cache server: @@ -855,10 +1344,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -868,11 +1357,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:51:55 GMT + - Tue, 07 Jul 2020 04:56:24 GMT pragma: - no-cache server: @@ -904,10 +1393,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -917,11 +1406,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:52:25 GMT + - Tue, 07 Jul 2020 04:56:54 GMT pragma: - no-cache server: @@ -953,10 +1442,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -966,11 +1455,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:52:56 GMT + - Tue, 07 Jul 2020 04:57:24 GMT pragma: - no-cache server: @@ -1002,10 +1491,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1015,11 +1504,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:53:26 GMT + - Tue, 07 Jul 2020 04:57:54 GMT pragma: - no-cache server: @@ -1051,10 +1540,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1064,11 +1553,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:53:56 GMT + - Tue, 07 Jul 2020 04:58:25 GMT pragma: - no-cache server: @@ -1100,10 +1589,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1113,11 +1602,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:54:27 GMT + - Tue, 07 Jul 2020 04:58:55 GMT pragma: - no-cache server: @@ -1149,10 +1638,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1162,11 +1651,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:54:57 GMT + - Tue, 07 Jul 2020 04:59:25 GMT pragma: - no-cache server: @@ -1198,10 +1687,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1211,11 +1700,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:55:27 GMT + - Tue, 07 Jul 2020 04:59:55 GMT pragma: - no-cache server: @@ -1247,10 +1736,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1260,11 +1749,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:56:00 GMT + - Tue, 07 Jul 2020 05:00:25 GMT pragma: - no-cache server: @@ -1296,10 +1785,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1309,11 +1798,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:56:31 GMT + - Tue, 07 Jul 2020 05:00:55 GMT pragma: - no-cache server: @@ -1345,10 +1834,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1358,11 +1847,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:57:01 GMT + - Tue, 07 Jul 2020 05:01:25 GMT pragma: - no-cache server: @@ -1394,10 +1883,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1407,11 +1896,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:57:32 GMT + - Tue, 07 Jul 2020 05:01:55 GMT pragma: - no-cache server: @@ -1443,10 +1932,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1456,11 +1945,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:58:02 GMT + - Tue, 07 Jul 2020 05:02:26 GMT pragma: - no-cache server: @@ -1492,10 +1981,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1505,11 +1994,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:58:33 GMT + - Tue, 07 Jul 2020 05:02:57 GMT pragma: - no-cache server: @@ -1541,10 +2030,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1554,11 +2043,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:59:06 GMT + - Tue, 07 Jul 2020 05:03:27 GMT pragma: - no-cache server: @@ -1590,10 +2079,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1603,11 +2092,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 09:59:36 GMT + - Tue, 07 Jul 2020 05:03:57 GMT pragma: - no-cache server: @@ -1639,10 +2128,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1652,11 +2141,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:00:07 GMT + - Tue, 07 Jul 2020 05:04:28 GMT pragma: - no-cache server: @@ -1688,10 +2177,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1701,11 +2190,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:00:37 GMT + - Tue, 07 Jul 2020 05:04:58 GMT pragma: - no-cache server: @@ -1737,10 +2226,10 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1750,11 +2239,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fecee29d-f829-43f6-abb1-fa509ee7dc67?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/234e4cc1-c9cd-4cf2-95f3-3884d2b332dd?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:01:09 GMT + - Tue, 07 Jul 2020 05:05:28 GMT pragma: - no-cache server: @@ -1786,29 +2275,29 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2034' + - '2191' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:01:10 GMT + - Tue, 07 Jul 2020 05:05:28 GMT pragma: - no-cache server: @@ -1840,31 +2329,31 @@ interactions: ParameterSetName: - -n -g --enable-virtual-network User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2034' + - '2191' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:01:12 GMT + - Tue, 07 Jul 2020 05:05:28 GMT pragma: - no-cache server: @@ -1896,31 +2385,31 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2034' + - '2191' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:01:13 GMT + - Tue, 07 Jul 2020 05:05:29 GMT pragma: - no-cache server: @@ -1957,35 +2446,35 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '2030' + - '2187' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:01:19 GMT + - Tue, 07 Jul 2020 05:05:35 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 pragma: - no-cache server: @@ -2001,7 +2490,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: Ok @@ -2019,10 +2508,10 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2032,11 +2521,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:01:50 GMT + - Tue, 07 Jul 2020 05:06:05 GMT pragma: - no-cache server: @@ -2068,10 +2557,10 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2081,11 +2570,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:02:22 GMT + - Tue, 07 Jul 2020 05:06:37 GMT pragma: - no-cache server: @@ -2117,10 +2606,10 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2130,11 +2619,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:02:54 GMT + - Tue, 07 Jul 2020 05:07:07 GMT pragma: - no-cache server: @@ -2166,10 +2655,10 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2179,11 +2668,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:03:24 GMT + - Tue, 07 Jul 2020 05:07:36 GMT pragma: - no-cache server: @@ -2215,10 +2704,10 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2228,11 +2717,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:03:54 GMT + - Tue, 07 Jul 2020 05:08:06 GMT pragma: - no-cache server: @@ -2264,10 +2753,10 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2277,11 +2766,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/71fc6d6a-8144-4b5a-8d38-63bf8bf46f9c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3c37ae1e-9b9f-4589-a8bd-b8ad5dc8a05f?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:04:25 GMT + - Tue, 07 Jul 2020 05:08:37 GMT pragma: - no-cache server: @@ -2313,29 +2802,29 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2359' + - '2516' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:04:25 GMT + - Tue, 07 Jul 2020 05:08:37 GMT pragma: - no-cache server: @@ -2367,31 +2856,31 @@ interactions: ParameterSetName: - -n -g --subnet --ignore-missing-vnet-service-endpoint User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2359' + - '2516' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:04:27 GMT + - Tue, 07 Jul 2020 05:08:38 GMT pragma: - no-cache server: @@ -2423,31 +2912,31 @@ interactions: ParameterSetName: - -n -g --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2359' + - '2516' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:04:28 GMT + - Tue, 07 Jul 2020 05:08:39 GMT pragma: - no-cache server: @@ -2483,35 +2972,35 @@ interactions: ParameterSetName: - -n -g --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.Network/virtualNetworks/cli000003/subnets/cli000004","ignoreMissingVNetServiceEndpoint":true}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '2355' + - '2512' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:04:33 GMT + - Tue, 07 Jul 2020 05:08:43 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 pragma: - no-cache server: @@ -2545,10 +3034,59 @@ interactions: ParameterSetName: - -n -g --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:09:14 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb network-rule remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2558,11 +3096,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:05:03 GMT + - Tue, 07 Jul 2020 05:09:44 GMT pragma: - no-cache server: @@ -2594,10 +3132,10 @@ interactions: ParameterSetName: - -n -g --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2607,11 +3145,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:05:34 GMT + - Tue, 07 Jul 2020 05:10:14 GMT pragma: - no-cache server: @@ -2643,10 +3181,10 @@ interactions: ParameterSetName: - -n -g --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2656,11 +3194,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:06:04 GMT + - Tue, 07 Jul 2020 05:10:44 GMT pragma: - no-cache server: @@ -2692,10 +3230,10 @@ interactions: ParameterSetName: - -n -g --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2705,11 +3243,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5d472850-6199-4b4d-a661-d00c31e50f66?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3f714a59-ec35-4334-904f-e5b743c6132c?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:06:35 GMT + - Tue, 07 Jul 2020 05:11:15 GMT pragma: - no-cache server: @@ -2741,29 +3279,29 @@ interactions: ParameterSetName: - -n -g --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2034' + - '2191' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:06:36 GMT + - Tue, 07 Jul 2020 05:11:16 GMT pragma: - no-cache server: @@ -2795,31 +3333,31 @@ interactions: ParameterSetName: - -n -g --subnet User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2034' + - '2191' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:06:37 GMT + - Tue, 07 Jul 2020 05:11:15 GMT pragma: - no-cache server: @@ -2851,31 +3389,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:04:49.3194014Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":true,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"109f8a8f-4755-45e7-9f40-4ada47904290","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2034' + - '2191' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_accounty5vpjfawek43huji3vpu7q55zcih2cclclypgzfpkdu6vjoa7g/providers/Microsoft.DocumentDB/databaseAccounts/clifksbrcb5n5pdfzonnaftfo4gjle5mlh3xbyn5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accounth42o56x26jstl2armqkvdrzgteikvov5m5jrf63nzzutjbcude/providers/Microsoft.DocumentDB/databaseAccounts/clijt2szly76ui2ltif5yydvwkbfddjpkynhyxbf?api-version=2020-04-01 content-type: - application/json date: - - Fri, 15 May 2020 10:06:39 GMT + - Tue, 07 Jul 2020 05:11:17 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_private_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_private_endpoint.yaml index ed62e8d6b9a..db74fff3300 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_private_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_private_endpoint.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_pe000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001","name":"cli_test_cosmosdb_pe000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-20T06:42:21Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001","name":"cli_test_cosmosdb_pe000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T04:45:36Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:42:25 GMT + - Tue, 07 Jul 2020 04:45:37 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002","name":"cli-test-cosmosdb-pe-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T04:45:44.6944734Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"2630b414-ad8f-4180-9c4d-211ffc05e548","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1558' + - '1715' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:42:31 GMT + - Tue, 07 Jul 2020 04:45:45 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/operationResults/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/operationResults/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 pragma: - no-cache server: @@ -108,7 +108,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: Ok @@ -126,10 +126,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +139,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:43:01 GMT + - Tue, 07 Jul 2020 04:46:15 GMT pragma: - no-cache server: @@ -175,10 +175,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +188,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:43:33 GMT + - Tue, 07 Jul 2020 04:46:46 GMT pragma: - no-cache server: @@ -224,10 +224,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +237,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:44:04 GMT + - Tue, 07 Jul 2020 04:47:17 GMT pragma: - no-cache server: @@ -273,10 +273,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +286,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:44:34 GMT + - Tue, 07 Jul 2020 04:47:47 GMT pragma: - no-cache server: @@ -322,10 +322,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +335,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:45:04 GMT + - Tue, 07 Jul 2020 04:48:18 GMT pragma: - no-cache server: @@ -371,10 +371,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +384,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:45:34 GMT + - Tue, 07 Jul 2020 04:48:48 GMT pragma: - no-cache server: @@ -420,10 +420,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +433,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:46:05 GMT + - Tue, 07 Jul 2020 04:49:18 GMT pragma: - no-cache server: @@ -469,10 +469,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +482,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:46:35 GMT + - Tue, 07 Jul 2020 04:49:48 GMT pragma: - no-cache server: @@ -518,10 +518,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +531,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:47:05 GMT + - Tue, 07 Jul 2020 04:50:19 GMT pragma: - no-cache server: @@ -567,10 +567,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +580,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:47:35 GMT + - Tue, 07 Jul 2020 04:50:49 GMT pragma: - no-cache server: @@ -616,10 +616,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +629,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:48:06 GMT + - Tue, 07 Jul 2020 04:51:19 GMT pragma: - no-cache server: @@ -665,10 +665,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +678,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:48:36 GMT + - Tue, 07 Jul 2020 04:51:49 GMT pragma: - no-cache server: @@ -714,10 +714,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +727,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:49:07 GMT + - Tue, 07 Jul 2020 04:52:19 GMT pragma: - no-cache server: @@ -763,10 +763,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +776,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:49:37 GMT + - Tue, 07 Jul 2020 04:52:51 GMT pragma: - no-cache server: @@ -812,10 +812,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:50:08 GMT + - Tue, 07 Jul 2020 04:53:21 GMT pragma: - no-cache server: @@ -861,10 +861,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:50:38 GMT + - Tue, 07 Jul 2020 04:53:51 GMT pragma: - no-cache server: @@ -910,10 +910,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:51:08 GMT + - Tue, 07 Jul 2020 04:54:21 GMT pragma: - no-cache server: @@ -959,10 +959,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:51:38 GMT + - Tue, 07 Jul 2020 04:54:52 GMT pragma: - no-cache server: @@ -1008,10 +1008,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:52:09 GMT + - Tue, 07 Jul 2020 04:55:22 GMT pragma: - no-cache server: @@ -1057,10 +1057,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1070,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:52:39 GMT + - Tue, 07 Jul 2020 04:55:52 GMT pragma: - no-cache server: @@ -1106,10 +1106,500 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:56:22 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:56:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:57:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:57:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:58:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:58:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:59:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:59:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:00:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:00:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1119,11 +1609,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96f6627b-3b10-4d8e-a3fb-a3700ac65fd1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/83080560-d4ad-429f-a0a2-a52774aa39ff?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:53:10 GMT + - Tue, 07 Jul 2020 05:01:25 GMT pragma: - no-cache server: @@ -1155,29 +1645,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002","name":"cli-test-cosmosdb-pe-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:00:55.0834613Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"2630b414-ad8f-4180-9c4d-211ffc05e548","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1915' + - '2072' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:53:11 GMT + - Tue, 07 Jul 2020 05:01:25 GMT pragma: - no-cache server: @@ -1209,31 +1699,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002","name":"cli-test-cosmosdb-pe-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:00:55.0834613Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"2630b414-ad8f-4180-9c4d-211ffc05e548","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1915' + - '2072' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27?api-version=2020-04-01 content-type: - application/json date: - - Wed, 20 May 2020 06:53:12 GMT + - Tue, 07 Jul 2020 05:01:26 GMT pragma: - no-cache server: @@ -1252,9 +1742,9 @@ interactions: code: 200 message: Ok - request: - body: '{"location": "centraluseuap", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24"}, "name": "cli-subnet-000004"}]}}' + body: '{"location": "eastus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"properties": {"addressPrefix": + "10.0.0.0/24"}, "name": "cli-subnet-000004"}]}}' headers: Accept: - application/json @@ -1265,14 +1755,14 @@ interactions: Connection: - keep-alive Content-Length: - - '229' + - '223' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g -l --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -1280,15 +1770,15 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n - \ \"etag\": \"W/\\\"569bc495-80b2-4c1f-8de5-3d80b3631db5\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n + \ \"etag\": \"W/\\\"417a92e2-01cf-4b27-890a-be4e41999003\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f019078a-8c72-42a4-9f95-8e2c34ff9bc9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"fc5870a8-cea1-4f99-96a8-a4835a1a3c9b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"569bc495-80b2-4c1f-8de5-3d80b3631db5\\\"\",\r\n + \ \"etag\": \"W/\\\"417a92e2-01cf-4b27-890a-be4e41999003\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1299,15 +1789,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/5c251482-6686-4c49-a8e4-687aa0ed3983?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/bfc9c3e0-c29d-4f07-966b-6cafd486226f?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1535' + - '1529' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:18 GMT + - Tue, 07 Jul 2020 05:01:28 GMT expires: - '-1' pragma: @@ -1320,9 +1810,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ab09b06-6d48-473a-bad9-3c62131cb3f0 + - e1edc0c4-e4bb-4772-a50f-67013e564535 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -1340,10 +1830,10 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/5c251482-6686-4c49-a8e4-687aa0ed3983?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/bfc9c3e0-c29d-4f07-966b-6cafd486226f?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1355,7 +1845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:24 GMT + - Tue, 07 Jul 2020 05:01:31 GMT expires: - '-1' pragma: @@ -1372,7 +1862,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8fe7b559-f14f-4727-b81e-0a80b3e6b66c + - 666052ab-8eae-4486-854e-86d52dbccace status: code: 200 message: OK @@ -1390,22 +1880,22 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n - \ \"etag\": \"W/\\\"3efd3fd0-6fbb-471b-b6c7-79d306eb7e44\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n + \ \"etag\": \"W/\\\"b8ed6098-21d4-4bb9-a6a9-e25c2e1cd01e\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f019078a-8c72-42a4-9f95-8e2c34ff9bc9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"fc5870a8-cea1-4f99-96a8-a4835a1a3c9b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"3efd3fd0-6fbb-471b-b6c7-79d306eb7e44\\\"\",\r\n + \ \"etag\": \"W/\\\"b8ed6098-21d4-4bb9-a6a9-e25c2e1cd01e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1416,13 +1906,13 @@ interactions: cache-control: - no-cache content-length: - - '1537' + - '1531' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:24 GMT + - Tue, 07 Jul 2020 05:01:32 GMT etag: - - W/"3efd3fd0-6fbb-471b-b6c7-79d306eb7e44" + - W/"b8ed6098-21d4-4bb9-a6a9-e25c2e1cd01e" expires: - '-1' pragma: @@ -1439,7 +1929,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 566455ab-f05a-4790-8a90-1d14af8a38a8 + - 262bacac-f8e4-4b61-a427-ef19a80a09a7 status: code: 200 message: OK @@ -1457,8 +1947,8 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET @@ -1466,7 +1956,7 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"3efd3fd0-6fbb-471b-b6c7-79d306eb7e44\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"b8ed6098-21d4-4bb9-a6a9-e25c2e1cd01e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -1479,9 +1969,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:25 GMT + - Tue, 07 Jul 2020 05:01:32 GMT etag: - - W/"3efd3fd0-6fbb-471b-b6c7-79d306eb7e44" + - W/"b8ed6098-21d4-4bb9-a6a9-e25c2e1cd01e" expires: - '-1' pragma: @@ -1498,7 +1988,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cea7746e-904e-4c39-8095-a56ac4896d15 + - 993558c1-0b59-4a22-b355-91922caf5bb4 status: code: 200 message: OK @@ -1522,8 +2012,8 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -1531,14 +2021,14 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"078a34ff-8b83-4e22-921e-be54c3e0325e\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"02f9024d-3775-407f-8fc8-9ea98ff52d5f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d2fac2f0-9e1d-431f-9146-0e245aa2050e?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/929559ea-fc7a-4c17-9a0f-6d560c2cd21e?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1546,7 +2036,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:26 GMT + - Tue, 07 Jul 2020 05:01:33 GMT expires: - '-1' pragma: @@ -1563,9 +2053,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84549015-198d-49a0-b719-ea9c9123dc24 + - b51d3a9c-a6f1-4a04-aa10-3818fad81100 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 200 message: OK @@ -1583,10 +2073,10 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d2fac2f0-9e1d-431f-9146-0e245aa2050e?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/929559ea-fc7a-4c17-9a0f-6d560c2cd21e?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1598,7 +2088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:31 GMT + - Tue, 07 Jul 2020 05:01:37 GMT expires: - '-1' pragma: @@ -1615,7 +2105,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ba83e52e-5ab4-4384-bb7d-331e05f843b6 + - 16caf369-e212-4089-84c4-4b7c6badbbca status: code: 200 message: OK @@ -1633,29 +2123,30 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"d014bb4b-5f23-4e51-9784-60bd2b7f59ca\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"51560047-bdec-4dda-adf3-0738c8c13f29\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + \ \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg5\"\r\n + \ },\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: cache-control: - no-cache content-length: - - '640' + - '849' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:31 GMT + - Tue, 07 Jul 2020 05:01:37 GMT etag: - - W/"d014bb4b-5f23-4e51-9784-60bd2b7f59ca" + - W/"51560047-bdec-4dda-adf3-0738c8c13f29" expires: - '-1' pragma: @@ -1672,12 +2163,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c5d3bc9-3cc3-495c-9c68-f7035fdfd60f + - 126488b3-186d-4c42-b2e5-e2f72056185b status: code: 200 message: OK - request: - body: 'b''{"location": "centraluseuap", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004"}, + body: 'b''{"location": "eastus2", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004"}, "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002", "groupIds": ["Sql"]}, "name": "cli-pec-000006"}]}}''' headers: @@ -1690,15 +2181,15 @@ interactions: Connection: - keep-alive Content-Length: - - '668' + - '662' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -1706,12 +2197,12 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n - \ \"etag\": \"W/\\\"46aa6976-2a47-4bd9-ac07-623343e8aedd\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n + \ \"etag\": \"W/\\\"bef036c8-88bb-490c-b7c0-67672ff9868a\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"bf814672-0e4c-4006-bb02-207f54dad6aa\",\r\n \"privateLinkServiceConnections\": + \"0ce3be70-41fb-441b-9296-b7f8182ff516\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n - \ \"etag\": \"W/\\\"46aa6976-2a47-4bd9-ac07-623343e8aedd\\\"\",\r\n + \ \"etag\": \"W/\\\"bef036c8-88bb-490c-b7c0-67672ff9868a\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002\",\r\n \ \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1720,21 +2211,21 @@ interactions: \ \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.8eeda3ae-1190-4d13-a5b2-3eb8ee3fa8b4\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.38a70078-de7a-4ec9-9e84-dbc26b08382a\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f50f0718-b8dc-495d-bf0f-06b3d0e63e75?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3dd6bf3f-f95c-4abc-951c-3524920d466f?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2327' + - '2321' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:40 GMT + - Tue, 07 Jul 2020 05:01:41 GMT expires: - '-1' pragma: @@ -1747,9 +2238,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b1a2e1c-fe96-4325-b498-b4f8e2fd2c94 + - f61f5dd3-ae32-4738-b6fc-3fbe5c580ef0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1768,10 +2259,61 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3dd6bf3f-f95c-4abc-951c-3524920d466f?api-version=2020-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 07 Jul 2020 05:01:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dc2a3762-f1d8-4608-a27e-f7aca3b3d4e4 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-ids + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f50f0718-b8dc-495d-bf0f-06b3d0e63e75?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3dd6bf3f-f95c-4abc-951c-3524920d466f?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1783,7 +2325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:53:52 GMT + - Tue, 07 Jul 2020 05:02:02 GMT expires: - '-1' pragma: @@ -1800,7 +2342,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd7ca485-972a-4087-a4b2-e531cd2b16c4 + - c1966065-91a2-4d81-982c-8a5faee1cc9c status: code: 200 message: OK @@ -1819,10 +2361,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f50f0718-b8dc-495d-bf0f-06b3d0e63e75?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3dd6bf3f-f95c-4abc-951c-3524920d466f?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1834,7 +2376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:54:02 GMT + - Tue, 07 Jul 2020 05:02:12 GMT expires: - '-1' pragma: @@ -1851,7 +2393,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 30b4fc3a-2619-4dff-9c71-6f383f98ef61 + - b4f55b11-4380-4231-8b4f-8581d7003608 status: code: 200 message: OK @@ -1870,10 +2412,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f50f0718-b8dc-495d-bf0f-06b3d0e63e75?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3dd6bf3f-f95c-4abc-951c-3524920d466f?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1885,7 +2427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:54:13 GMT + - Tue, 07 Jul 2020 05:02:22 GMT expires: - '-1' pragma: @@ -1902,7 +2444,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3993fd9b-2add-4e80-8828-bf67ffea8db5 + - cdab29f8-f2ef-4cb2-8645-2dcf4502e519 status: code: 200 message: OK @@ -1921,10 +2463,10 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/f50f0718-b8dc-495d-bf0f-06b3d0e63e75?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3dd6bf3f-f95c-4abc-951c-3524920d466f?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1936,7 +2478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:54:23 GMT + - Tue, 07 Jul 2020 05:02:33 GMT expires: - '-1' pragma: @@ -1953,7 +2495,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7ac959bd-5a01-48ac-8318-ca6fc0da8da5 + - 3255bccc-b97a-4c37-81f0-b8dd9557878a status: code: 200 message: OK @@ -1972,19 +2514,19 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n - \ \"etag\": \"W/\\\"497e460d-4ab3-4982-b1d1-f1ea2cfaced4\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n + \ \"etag\": \"W/\\\"4142e6f2-11f9-48fb-8971-41acdcaaed8d\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"bf814672-0e4c-4006-bb02-207f54dad6aa\",\r\n \"privateLinkServiceConnections\": + \"0ce3be70-41fb-441b-9296-b7f8182ff516\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n - \ \"etag\": \"W/\\\"497e460d-4ab3-4982-b1d1-f1ea2cfaced4\\\"\",\r\n + \ \"etag\": \"W/\\\"4142e6f2-11f9-48fb-8971-41acdcaaed8d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002\",\r\n \ \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1993,7 +2535,7 @@ interactions: \ \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.8eeda3ae-1190-4d13-a5b2-3eb8ee3fa8b4\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.38a70078-de7a-4ec9-9e84-dbc26b08382a\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"cli-test-cosmosdb-pe-000002.documents.azure.com\",\r\n \"ipAddresses\": [\r\n \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \"fqdn\": @@ -2003,13 +2545,13 @@ interactions: cache-control: - no-cache content-length: - - '2634' + - '2628' content-type: - application/json; charset=utf-8 date: - - Wed, 20 May 2020 06:54:24 GMT + - Tue, 07 Jul 2020 05:02:33 GMT etag: - - W/"497e460d-4ab3-4982-b1d1-f1ea2cfaced4" + - W/"4142e6f2-11f9-48fb-8971-41acdcaaed8d" expires: - '-1' pragma: @@ -2026,7 +2568,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6f5f7afc-ec86-4d2e-8cbf-75f67155cbe1 + - 31483cde-d0f1-41b5-bb73-ba532e3f8c55 status: code: 200 message: OK @@ -2044,8 +2586,8 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET @@ -2059,11 +2601,11 @@ interactions: content-length: - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:54:26 GMT + - Tue, 07 Jul 2020 05:02:34 GMT pragma: - no-cache server: @@ -2095,8 +2637,8 @@ interactions: ParameterSetName: - --account-name --name --resource-group User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET @@ -2110,11 +2652,11 @@ interactions: content-length: - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:54:28 GMT + - Tue, 07 Jul 2020 05:02:35 GMT pragma: - no-cache server: @@ -2146,8 +2688,8 @@ interactions: ParameterSetName: - -a -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET @@ -2161,11 +2703,11 @@ interactions: content-length: - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:54:30 GMT + - Tue, 07 Jul 2020 05:02:35 GMT pragma: - no-cache server: @@ -2197,8 +2739,8 @@ interactions: ParameterSetName: - --account-name --resource-group --name --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET @@ -2212,11 +2754,11 @@ interactions: content-length: - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:54:33 GMT + - Tue, 07 Jul 2020 05:02:35 GMT pragma: - no-cache server: @@ -2254,8 +2796,8 @@ interactions: ParameterSetName: - --account-name --resource-group --name --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -2265,19 +2807,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b857c7f9-00aa-43a1-9fe4-56b00ecc2309?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2f7d67bc-0ca7-41ef-b9e1-8e699a4d56b7?api-version=2019-08-01-preview cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:54:33 GMT + - Tue, 07 Jul 2020 05:02:36 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/b857c7f9-00aa-43a1-9fe4-56b00ecc2309?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/2f7d67bc-0ca7-41ef-b9e1-8e699a4d56b7?api-version=2019-08-01-preview pragma: - no-cache server: @@ -2289,7 +2831,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -2307,10 +2849,10 @@ interactions: ParameterSetName: - --account-name --resource-group --name --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b857c7f9-00aa-43a1-9fe4-56b00ecc2309?api-version=2019-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2f7d67bc-0ca7-41ef-b9e1-8e699a4d56b7?api-version=2019-08-01-preview response: body: string: '{"status":"Dequeued"}' @@ -2320,11 +2862,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b857c7f9-00aa-43a1-9fe4-56b00ecc2309?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2f7d67bc-0ca7-41ef-b9e1-8e699a4d56b7?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:55:03 GMT + - Tue, 07 Jul 2020 05:03:07 GMT pragma: - no-cache server: @@ -2356,10 +2898,10 @@ interactions: ParameterSetName: - --account-name --resource-group --name --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b857c7f9-00aa-43a1-9fe4-56b00ecc2309?api-version=2019-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2f7d67bc-0ca7-41ef-b9e1-8e699a4d56b7?api-version=2019-08-01-preview response: body: string: '{"status":"Succeeded"}' @@ -2369,11 +2911,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b857c7f9-00aa-43a1-9fe4-56b00ecc2309?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2f7d67bc-0ca7-41ef-b9e1-8e699a4d56b7?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:55:34 GMT + - Tue, 07 Jul 2020 05:03:37 GMT pragma: - no-cache server: @@ -2405,8 +2947,8 @@ interactions: ParameterSetName: - --account-name --resource-group --name --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -2419,11 +2961,11 @@ interactions: content-length: - '808' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:55:35 GMT + - Tue, 07 Jul 2020 05:03:37 GMT pragma: - no-cache server: @@ -2455,8 +2997,8 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET @@ -2471,11 +3013,11 @@ interactions: content-length: - '808' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:55:37 GMT + - Tue, 07 Jul 2020 05:03:38 GMT pragma: - no-cache server: @@ -2513,8 +3055,8 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -2524,19 +3066,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bc6acfd-74cb-417a-9b4c-3c62158c591b?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c1e32be-318d-45ce-94df-2088aa0421a6?api-version=2019-08-01-preview cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:55:37 GMT + - Tue, 07 Jul 2020 05:03:38 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/9bc6acfd-74cb-417a-9b4c-3c62158c591b?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/1c1e32be-318d-45ce-94df-2088aa0421a6?api-version=2019-08-01-preview pragma: - no-cache server: @@ -2548,7 +3090,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -2566,10 +3108,10 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bc6acfd-74cb-417a-9b4c-3c62158c591b?api-version=2019-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c1e32be-318d-45ce-94df-2088aa0421a6?api-version=2019-08-01-preview response: body: string: '{"status":"Dequeued"}' @@ -2579,11 +3121,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bc6acfd-74cb-417a-9b4c-3c62158c591b?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c1e32be-318d-45ce-94df-2088aa0421a6?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:56:08 GMT + - Tue, 07 Jul 2020 05:04:10 GMT pragma: - no-cache server: @@ -2615,10 +3157,10 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bc6acfd-74cb-417a-9b4c-3c62158c591b?api-version=2019-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c1e32be-318d-45ce-94df-2088aa0421a6?api-version=2019-08-01-preview response: body: string: '{"status":"Succeeded"}' @@ -2628,11 +3170,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bc6acfd-74cb-417a-9b4c-3c62158c591b?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1c1e32be-318d-45ce-94df-2088aa0421a6?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:56:39 GMT + - Tue, 07 Jul 2020 05:04:39 GMT pragma: - no-cache server: @@ -2664,8 +3206,8 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -2678,11 +3220,11 @@ interactions: content-length: - '808' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:56:40 GMT + - Tue, 07 Jul 2020 05:04:40 GMT pragma: - no-cache server: @@ -2716,8 +3258,8 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: DELETE @@ -2727,19 +3269,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3b3d0ef-d394-4f77-8a37-2cd7e197270b?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/063c90f1-62a4-42fe-975e-7462bcbf53c7?api-version=2019-08-01-preview cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_pe5bk2bhv5lm5go3uvym4as2irachrv7o77gtioxguj7mrkx6w5c565zn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-4lguh4g/privateEndpointConnections/cli-pe-tieyzpwu7jq5dbkar?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pe5a4z4i2cwlrvqhzebiceu4u5qc52skmsrdfsqh3fjed3rtxvjsm3wjw/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-5cd2q27/privateEndpointConnections/cli-pe-vndwp6loqydapm2zq?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:56:42 GMT + - Tue, 07 Jul 2020 05:04:40 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/e3b3d0ef-d394-4f77-8a37-2cd7e197270b?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/063c90f1-62a4-42fe-975e-7462bcbf53c7?api-version=2019-08-01-preview pragma: - no-cache server: @@ -2751,7 +3293,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -2769,10 +3311,10 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3b3d0ef-d394-4f77-8a37-2cd7e197270b?api-version=2019-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/063c90f1-62a4-42fe-975e-7462bcbf53c7?api-version=2019-08-01-preview response: body: string: '{"status":"Dequeued"}' @@ -2782,11 +3324,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3b3d0ef-d394-4f77-8a37-2cd7e197270b?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/063c90f1-62a4-42fe-975e-7462bcbf53c7?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:57:14 GMT + - Tue, 07 Jul 2020 05:05:11 GMT pragma: - no-cache server: @@ -2818,10 +3360,10 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3b3d0ef-d394-4f77-8a37-2cd7e197270b?api-version=2019-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/063c90f1-62a4-42fe-975e-7462bcbf53c7?api-version=2019-08-01-preview response: body: string: '{"status":"Succeeded"}' @@ -2831,11 +3373,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3b3d0ef-d394-4f77-8a37-2cd7e197270b?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/063c90f1-62a4-42fe-975e-7462bcbf53c7?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 20 May 2020 06:57:46 GMT + - Tue, 07 Jul 2020 05:05:41 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_private_link_resource.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_private_link_resource.yaml index 761aed52031..b359775e9d0 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_private_link_resource.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_private_link_resource.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_plr000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001","name":"cli_test_cosmosdb_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-04-15T22:38:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001","name":"cli_test_cosmosdb_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T04:45:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 15 Apr 2020 22:38:53 GMT + - Tue, 07 Jul 2020 04:45:36 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,88 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002","name":"cli-test-cosmosdb-plr-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T04:45:42.8803632Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"d8a1ad8d-8f37-4890-a38e-e37316e4e811","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1547' + - '1715' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_plrrfqcz3j5lg3x3cqeg37iglbmjidcwwlq7457ei3iiaqxd47spei3ex/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-2yneba?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_plrk2b3a44j2363igfv47o25osh66imb2dx7pa2tntgnpqtqli622sxyg/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-l334l2?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:38:56 GMT + - Tue, 07 Jul 2020 04:45:43 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002/operationResults/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002/operationResults/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:46:14 GMT pragma: - no-cache server: @@ -106,9 +153,203 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:46:44 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:47:14 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:47:46 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 04:48:17 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,10 +367,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +380,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:39:26 GMT + - Tue, 07 Jul 2020 04:48:46 GMT pragma: - no-cache server: @@ -157,7 +398,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,10 +416,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +429,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:39:56 GMT + - Tue, 07 Jul 2020 04:49:17 GMT pragma: - no-cache server: @@ -206,7 +447,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,10 +465,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +478,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:40:26 GMT + - Tue, 07 Jul 2020 04:49:48 GMT pragma: - no-cache server: @@ -255,7 +496,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,10 +514,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +527,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:40:56 GMT + - Tue, 07 Jul 2020 04:50:18 GMT pragma: - no-cache server: @@ -304,7 +545,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,10 +563,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +576,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:41:27 GMT + - Tue, 07 Jul 2020 04:50:48 GMT pragma: - no-cache server: @@ -353,7 +594,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,10 +612,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +625,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:41:58 GMT + - Tue, 07 Jul 2020 04:51:19 GMT pragma: - no-cache server: @@ -402,7 +643,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,10 +661,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +674,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:42:28 GMT + - Tue, 07 Jul 2020 04:51:49 GMT pragma: - no-cache server: @@ -451,7 +692,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,10 +710,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +723,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:42:59 GMT + - Tue, 07 Jul 2020 04:52:19 GMT pragma: - no-cache server: @@ -500,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,10 +759,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +772,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:43:29 GMT + - Tue, 07 Jul 2020 04:52:49 GMT pragma: - no-cache server: @@ -549,7 +790,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,10 +808,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +821,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:43:58 GMT + - Tue, 07 Jul 2020 04:53:20 GMT pragma: - no-cache server: @@ -598,7 +839,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,10 +857,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +870,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:44:28 GMT + - Tue, 07 Jul 2020 04:53:50 GMT pragma: - no-cache server: @@ -647,7 +888,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,10 +906,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +919,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:44:59 GMT + - Tue, 07 Jul 2020 04:54:19 GMT pragma: - no-cache server: @@ -696,7 +937,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,10 +955,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +968,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:45:29 GMT + - Tue, 07 Jul 2020 04:54:51 GMT pragma: - no-cache server: @@ -745,7 +986,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,10 +1004,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +1017,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:45:59 GMT + - Tue, 07 Jul 2020 04:55:21 GMT pragma: - no-cache server: @@ -794,7 +1035,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,10 +1053,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +1066,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:46:29 GMT + - Tue, 07 Jul 2020 04:55:51 GMT pragma: - no-cache server: @@ -843,7 +1084,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,10 +1102,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +1115,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:46:59 GMT + - Tue, 07 Jul 2020 04:56:21 GMT pragma: - no-cache server: @@ -892,7 +1133,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -910,10 +1151,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +1164,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:47:30 GMT + - Tue, 07 Jul 2020 04:56:52 GMT pragma: - no-cache server: @@ -941,7 +1182,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -959,10 +1200,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +1213,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:48:00 GMT + - Tue, 07 Jul 2020 04:57:23 GMT pragma: - no-cache server: @@ -990,7 +1231,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1008,10 +1249,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1262,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:48:31 GMT + - Tue, 07 Jul 2020 04:57:53 GMT pragma: - no-cache server: @@ -1039,7 +1280,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1057,10 +1298,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1070,11 +1311,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ff47ac55-4440-4169-bc4c-d9fa3c2d143a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7bee9c8-2c84-4e76-aa71-7d0c08e1ff5e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:49:02 GMT + - Tue, 07 Jul 2020 04:58:24 GMT pragma: - no-cache server: @@ -1088,7 +1329,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1106,29 +1347,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002","name":"cli-test-cosmosdb-plr-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-plr-000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T04:57:54.0856678Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-plr-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"d8a1ad8d-8f37-4890-a38e-e37316e4e811","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1904' + - '2072' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_plrrfqcz3j5lg3x3cqeg37iglbmjidcwwlq7457ei3iiaqxd47spei3ex/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-2yneba?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_plrk2b3a44j2363igfv47o25osh66imb2dx7pa2tntgnpqtqli622sxyg/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-l334l2?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:49:02 GMT + - Tue, 07 Jul 2020 04:58:24 GMT pragma: - no-cache server: @@ -1142,7 +1383,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1160,31 +1401,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002","name":"cli-test-cosmosdb-plr-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-plr-000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T04:57:54.0856678Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-plr-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"d8a1ad8d-8f37-4890-a38e-e37316e4e811","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1904' + - '2072' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_plrrfqcz3j5lg3x3cqeg37iglbmjidcwwlq7457ei3iiaqxd47spei3ex/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-2yneba?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_plrk2b3a44j2363igfv47o25osh66imb2dx7pa2tntgnpqtqli622sxyg/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-l334l2?api-version=2020-04-01 content-type: - application/json date: - - Wed, 15 Apr 2020 22:49:02 GMT + - Tue, 07 Jul 2020 04:58:24 GMT pragma: - no-cache server: @@ -1198,7 +1439,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1216,8 +1457,8 @@ interactions: ParameterSetName: - --account-name --resource-group User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.3.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET @@ -1231,11 +1472,11 @@ interactions: content-length: - '522' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_plrrfqcz3j5lg3x3cqeg37iglbmjidcwwlq7457ei3iiaqxd47spei3ex/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-2yneba/privateLinkResources?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_plrk2b3a44j2363igfv47o25osh66imb2dx7pa2tntgnpqtqli622sxyg/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-l334l2/privateLinkResources?api-version=2019-08-01-preview content-type: - application/json date: - - Wed, 15 Apr 2020 22:49:03 GMT + - Tue, 07 Jul 2020 04:58:25 GMT pragma: - no-cache server: @@ -1249,7 +1490,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_container.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_container.yaml index ebbf4289768..b0cee2fe5e9 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_container.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_container.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_container000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001","name":"cli_test_cosmosdb_sql_container000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-18T20:35:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001","name":"cli_test_cosmosdb_sql_container000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:23:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 20:35:44 GMT + - Thu, 18 Jun 2020 20:23:50 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1480' + - '1527' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:47 GMT + - Thu, 18 Jun 2020 20:23:58 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/operationResults/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 pragma: - no-cache server: @@ -108,7 +108,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: Ok @@ -126,10 +126,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +139,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:18 GMT + - Thu, 18 Jun 2020 20:24:29 GMT pragma: - no-cache server: @@ -175,10 +175,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +188,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:36:48 GMT + - Thu, 18 Jun 2020 20:24:59 GMT pragma: - no-cache server: @@ -224,10 +224,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +237,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:19 GMT + - Thu, 18 Jun 2020 20:25:29 GMT pragma: - no-cache server: @@ -273,10 +273,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +286,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:37:49 GMT + - Thu, 18 Jun 2020 20:26:00 GMT pragma: - no-cache server: @@ -322,10 +322,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +335,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:38:19 GMT + - Thu, 18 Jun 2020 20:26:30 GMT pragma: - no-cache server: @@ -371,10 +371,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +384,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:38:49 GMT + - Thu, 18 Jun 2020 20:27:00 GMT pragma: - no-cache server: @@ -420,10 +420,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +433,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:39:19 GMT + - Thu, 18 Jun 2020 20:27:30 GMT pragma: - no-cache server: @@ -469,10 +469,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +482,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:39:50 GMT + - Thu, 18 Jun 2020 20:28:01 GMT pragma: - no-cache server: @@ -518,10 +518,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +531,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:40:20 GMT + - Thu, 18 Jun 2020 20:28:31 GMT pragma: - no-cache server: @@ -567,10 +567,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +580,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:40:50 GMT + - Thu, 18 Jun 2020 20:29:02 GMT pragma: - no-cache server: @@ -616,10 +616,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +629,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:41:20 GMT + - Thu, 18 Jun 2020 20:29:32 GMT pragma: - no-cache server: @@ -665,10 +665,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +678,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:41:50 GMT + - Thu, 18 Jun 2020 20:30:03 GMT pragma: - no-cache server: @@ -714,10 +714,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +727,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:42:21 GMT + - Thu, 18 Jun 2020 20:30:33 GMT pragma: - no-cache server: @@ -763,10 +763,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +776,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:42:51 GMT + - Thu, 18 Jun 2020 20:31:03 GMT pragma: - no-cache server: @@ -812,10 +812,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:43:21 GMT + - Thu, 18 Jun 2020 20:31:34 GMT pragma: - no-cache server: @@ -861,10 +861,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:43:52 GMT + - Thu, 18 Jun 2020 20:32:04 GMT pragma: - no-cache server: @@ -910,10 +910,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:44:22 GMT + - Thu, 18 Jun 2020 20:32:35 GMT pragma: - no-cache server: @@ -959,10 +959,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:44:53 GMT + - Thu, 18 Jun 2020 20:33:05 GMT pragma: - no-cache server: @@ -1008,10 +1008,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:45:23 GMT + - Thu, 18 Jun 2020 20:33:35 GMT pragma: - no-cache server: @@ -1057,10 +1057,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1070,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:45:53 GMT + - Thu, 18 Jun 2020 20:34:05 GMT pragma: - no-cache server: @@ -1106,10 +1106,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1119,11 +1119,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:46:23 GMT + - Thu, 18 Jun 2020 20:34:36 GMT pragma: - no-cache server: @@ -1155,10 +1155,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1168,11 +1168,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:46:53 GMT + - Thu, 18 Jun 2020 20:35:06 GMT pragma: - no-cache server: @@ -1204,10 +1204,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1217,11 +1217,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:47:24 GMT + - Thu, 18 Jun 2020 20:35:36 GMT pragma: - no-cache server: @@ -1253,10 +1253,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1266,11 +1266,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:47:54 GMT + - Thu, 18 Jun 2020 20:36:06 GMT pragma: - no-cache server: @@ -1302,10 +1302,451 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:36:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:37:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:37:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:08 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:40:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:40:40 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1315,11 +1756,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f651a008-7951-4f68-a47a-5a4b3f1ada03?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eeefa02e-4478-47c7-b4a2-c6d2d6df62e7?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:24 GMT + - Thu, 18 Jun 2020 20:41:10 GMT pragma: - no-cache server: @@ -1351,29 +1792,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1785' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:24 GMT + - Thu, 18 Jun 2020 20:41:10 GMT pragma: - no-cache server: @@ -1405,31 +1846,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004","name":"cli000004","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000004.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000004-westus","locationName":"West US","documentEndpoint":"https://cli000004-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000004-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1785' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:25 GMT + - Thu, 18 Jun 2020 20:41:11 GMT pragma: - no-cache server: @@ -1465,30 +1906,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b80248e-27c1-4f13-ac6a-3d518d356261?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0195d14c-d184-4b39-b42b-bf5f1a0c2da4?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:26 GMT + - Thu, 18 Jun 2020 20:41:12 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/8b80248e-27c1-4f13-ac6a-3d518d356261?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/operationResults/0195d14c-d184-4b39-b42b-bf5f1a0c2da4?api-version=2020-04-01 pragma: - no-cache server: @@ -1500,7 +1941,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 202 message: Accepted @@ -1518,10 +1959,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b80248e-27c1-4f13-ac6a-3d518d356261?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0195d14c-d184-4b39-b42b-bf5f1a0c2da4?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1531,11 +1972,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/8b80248e-27c1-4f13-ac6a-3d518d356261?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0195d14c-d184-4b39-b42b-bf5f1a0c2da4?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:56 GMT + - Thu, 18 Jun 2020 20:41:43 GMT pragma: - no-cache server: @@ -1567,24 +2008,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"8tUMAA==","_self":"dbs/8tUMAA==/","_etag":"\"0000e101-0000-0700-0000-5ec2f49f0000\"","_colls":"colls/","_users":"users/","_ts":1589834911}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"kRUMAA==","_self":"dbs/kRUMAA==/","_etag":"\"00004402-0000-0700-0000-5eebd16d0000\"","_colls":"colls/","_users":"users/","_ts":1592512877}}}' headers: cache-control: - no-store, no-cache content-length: - '526' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:57 GMT + - Thu, 18 Jun 2020 20:41:44 GMT pragma: - no-cache server: @@ -1616,27 +2057,27 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: febcf3ee-9948-11ea-819b-a08cfdd714a6, - Request URI: /apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/0d297db7-3e86-4be2-9e77-27af315e3baa/partitions/7db3985f-6a56-4875-bf35-3ba25a1eada2/replicas/132342908113063748s, - RequestStats: \\r\\nRequestStartTime: 2020-05-18T20:48:59.0369108Z, RequestEndTime: - 2020-05-18T20:48:59.0369108Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-05-18T20:48:59.0369108Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/0d297db7-3e86-4be2-9e77-27af315e3baa/partitions/7db3985f-6a56-4875-bf35-3ba25a1eada2/replicas/132342908113063748s, - LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, + {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 1fb957f2-b1a4-11ea-b8ad-b46bfc3d8f4d, + Request URI: /apps/b94e1dc4-b993-4500-a764-037a124e0211/services/5b8582db-f9b5-4903-aebb-7b7c38625e73/partitions/77cc9fce-54c9-45cc-a4f7-4633371b30fe/replicas/132369856039373078s, + RequestStats: \\r\\nRequestStartTime: 2020-06-18T20:41:46.2311735Z, RequestEndTime: + 2020-06-18T20:41:46.2311735Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-06-18T20:41:46.2311735Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.20:11300/apps/b94e1dc4-b993-4500-a764-037a124e0211/services/5b8582db-f9b5-4903-aebb-7b7c38625e73/partitions/77cc9fce-54c9-45cc-a4f7-4633371b30fe/replicas/132369856039373078s, + LSN: 6, GlobalCommittedLsn: 6, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#6, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, - OperationType: Read\\r\\nResponseTime: 2020-05-18T20:48:59.0369108Z, StoreResult: - StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/0d297db7-3e86-4be2-9e77-27af315e3baa/partitions/7db3985f-6a56-4875-bf35-3ba25a1eada2/replicas/132342940350625010s, - LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, + OperationType: Read\\r\\nResponseTime: 2020-06-18T20:41:46.2311735Z, StoreResult: + StorePhysicalAddress: rntbd://10.0.0.28:11000/apps/b94e1dc4-b993-4500-a764-037a124e0211/services/5b8582db-f9b5-4903-aebb-7b7c38625e73/partitions/77cc9fce-54c9-45cc-a4f7-4633371b30fe/replicas/132369856039373079s, + LSN: 6, GlobalCommittedLsn: 6, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#6, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/cli000002/colls/cli000003, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -1646,11 +2087,11 @@ interactions: content-length: - '1732' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers/clivmfpxk24nyz6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers/climtc5m4zvvfbd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:58 GMT + - Thu, 18 Jun 2020 20:41:46 GMT pragma: - no-cache server: @@ -1687,30 +2128,30 @@ interactions: ParameterSetName: - -g -a -d -n -p --ttl --unique-key-policy --conflict-resolution-policy --idx User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2b8c232b-62e7-431d-9fb7-ec049c0a09c6?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44393ceb-aab3-4754-8d94-b21c7342f689?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers/clivmfpxk24nyz6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers/climtc5m4zvvfbd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:48:59 GMT + - Thu, 18 Jun 2020 20:41:47 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/2b8c232b-62e7-431d-9fb7-ec049c0a09c6?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/44393ceb-aab3-4754-8d94-b21c7342f689?api-version=2020-04-01 pragma: - no-cache server: @@ -1740,10 +2181,10 @@ interactions: ParameterSetName: - -g -a -d -n -p --ttl --unique-key-policy --conflict-resolution-policy --idx User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2b8c232b-62e7-431d-9fb7-ec049c0a09c6?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44393ceb-aab3-4754-8d94-b21c7342f689?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1753,11 +2194,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2b8c232b-62e7-431d-9fb7-ec049c0a09c6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44393ceb-aab3-4754-8d94-b21c7342f689?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:49:30 GMT + - Thu, 18 Jun 2020 20:42:17 GMT pragma: - no-cache server: @@ -1789,24 +2230,24 @@ interactions: ParameterSetName: - -g -a -d -n -p --ttl --unique-key-policy --conflict-resolution-policy --idx User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8tUMAK30OSQ=","_ts":1589834944,"_self":"dbs/8tUMAA==/colls/8tUMAK30OSQ=/","_etag":"\"0000e301-0000-0700-0000-5ec2f4c00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"kRUMAN+heWI=","_ts":1592512911,"_self":"dbs/kRUMAA==/colls/kRUMAN+heWI=/","_etag":"\"00004602-0000-0700-0000-5eebd18f0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1232' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers/clivmfpxk24nyz6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers/climtc5m4zvvfbd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:49:31 GMT + - Thu, 18 Jun 2020 20:42:17 GMT pragma: - no-cache server: @@ -1838,26 +2279,26 @@ interactions: ParameterSetName: - -g -a -d -n --ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8tUMAK30OSQ=","_ts":1589834944,"_self":"dbs/8tUMAA==/colls/8tUMAK30OSQ=/","_etag":"\"0000e301-0000-0700-0000-5ec2f4c00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":1000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"kRUMAN+heWI=","_ts":1592512911,"_self":"dbs/kRUMAA==/colls/kRUMAN+heWI=/","_etag":"\"00004602-0000-0700-0000-5eebd18f0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1232' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers/clivmfpxk24nyz6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers/climtc5m4zvvfbd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:49:32 GMT + - Thu, 18 Jun 2020 20:42:19 GMT pragma: - no-cache server: @@ -1899,30 +2340,30 @@ interactions: ParameterSetName: - -g -a -d -n --ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/89413c21-7baf-4ae8-90dd-2a20c9520a08?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3fc1ac25-359d-4278-a7a7-62aa66743801?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers/clivmfpxk24nyz6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers/climtc5m4zvvfbd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:49:32 GMT + - Thu, 18 Jun 2020 20:42:20 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/89413c21-7baf-4ae8-90dd-2a20c9520a08?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/3fc1ac25-359d-4278-a7a7-62aa66743801?api-version=2020-04-01 pragma: - no-cache server: @@ -1952,10 +2393,10 @@ interactions: ParameterSetName: - -g -a -d -n --ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/89413c21-7baf-4ae8-90dd-2a20c9520a08?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3fc1ac25-359d-4278-a7a7-62aa66743801?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1965,11 +2406,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/89413c21-7baf-4ae8-90dd-2a20c9520a08?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3fc1ac25-359d-4278-a7a7-62aa66743801?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:03 GMT + - Thu, 18 Jun 2020 20:42:51 GMT pragma: - no-cache server: @@ -2001,24 +2442,24 @@ interactions: ParameterSetName: - -g -a -d -n --ttl User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8tUMAK30OSQ=","_ts":1589834977,"_self":"dbs/8tUMAA==/colls/8tUMAK30OSQ=/","_etag":"\"0000e801-0000-0700-0000-5ec2f4e10000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"kRUMAN+heWI=","_ts":1592512944,"_self":"dbs/kRUMAA==/colls/kRUMAN+heWI=/","_etag":"\"00004b02-0000-0700-0000-5eebd1b00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1232' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers/clivmfpxk24nyz6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers/climtc5m4zvvfbd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:04 GMT + - Thu, 18 Jun 2020 20:42:51 GMT pragma: - no-cache server: @@ -2050,26 +2491,26 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8tUMAK30OSQ=","_ts":1589834977,"_self":"dbs/8tUMAA==/colls/8tUMAK30OSQ=/","_etag":"\"0000e801-0000-0700-0000-5ec2f4e10000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"kRUMAN+heWI=","_ts":1592512944,"_self":"dbs/kRUMAA==/colls/kRUMAN+heWI=/","_etag":"\"00004b02-0000-0700-0000-5eebd1b00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1232' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers/clivmfpxk24nyz6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers/climtc5m4zvvfbd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:04 GMT + - Thu, 18 Jun 2020 20:42:52 GMT pragma: - no-cache server: @@ -2101,26 +2542,26 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8tUMAK30OSQ=","_ts":1589834977,"_self":"dbs/8tUMAA==/colls/8tUMAK30OSQ=/","_etag":"\"0000e801-0000-0700-0000-5ec2f4e10000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"kRUMAN+heWI=","_ts":1592512944,"_self":"dbs/kRUMAA==/colls/kRUMAN+heWI=/","_etag":"\"00004b02-0000-0700-0000-5eebd1b00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/"}}}]}' headers: cache-control: - no-store, no-cache content-length: - '1168' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:06 GMT + - Thu, 18 Jun 2020 20:42:54 GMT pragma: - no-cache server: @@ -2152,26 +2593,26 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8tUMAK30OSQ=","_ts":1589834977,"_self":"dbs/8tUMAA==/colls/8tUMAK30OSQ=/","_etag":"\"0000e801-0000-0700-0000-5ec2f4e10000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/headquarters/employees/?"},{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"defaultTtl":2000,"uniqueKeyPolicy":{"uniqueKeys":[{"paths":["/path/to/key1"]},{"paths":["/path/to/key2"]}]},"conflictResolutionPolicy":{"mode":"lastWriterWins","conflictResolutionPath":"/path","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"kRUMAN+heWI=","_ts":1592512944,"_self":"dbs/kRUMAA==/colls/kRUMAN+heWI=/","_etag":"\"00004b02-0000-0700-0000-5eebd1b00000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1232' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers/clivmfpxk24nyz6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers/climtc5m4zvvfbd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:07 GMT + - Thu, 18 Jun 2020 20:42:55 GMT pragma: - no-cache server: @@ -2205,30 +2646,30 @@ interactions: ParameterSetName: - -g -a -d -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/36d1df2a-e00c-4086-91e0-cfe309c138d1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac44d8ec-bd22-4408-86e3-7b55e4dc8db3?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers/clivmfpxk24nyz6?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers/climtc5m4zvvfbd?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:08 GMT + - Thu, 18 Jun 2020 20:42:56 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/36d1df2a-e00c-4086-91e0-cfe309c138d1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers/cli000003/operationResults/ac44d8ec-bd22-4408-86e3-7b55e4dc8db3?api-version=2020-04-01 pragma: - no-cache server: @@ -2240,7 +2681,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -2258,10 +2699,10 @@ interactions: ParameterSetName: - -g -a -d -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/36d1df2a-e00c-4086-91e0-cfe309c138d1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac44d8ec-bd22-4408-86e3-7b55e4dc8db3?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2271,11 +2712,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/36d1df2a-e00c-4086-91e0-cfe309c138d1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac44d8ec-bd22-4408-86e3-7b55e4dc8db3?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:38 GMT + - Thu, 18 Jun 2020 20:43:27 GMT pragma: - no-cache server: @@ -2307,12 +2748,12 @@ interactions: ParameterSetName: - -g -a -d User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_container000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000004/sqlDatabases/cli000002/containers?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -2322,11 +2763,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_containermolfgcy5sjzneucqyre7toyjtth73jcgol73elsb6t3r/providers/Microsoft.DocumentDB/databaseAccounts/clieqnxonu324op/sqlDatabases/clixtl2hod6xadi/containers?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_containerq4dmqhhfxmvqg2fu7pwarrkard44iieyfbria4bbelbn/providers/Microsoft.DocumentDB/databaseAccounts/clidofyoyg26orw/sqlDatabases/clips7tienje457/containers?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:50:40 GMT + - Thu, 18 Jun 2020 20:43:29 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_database.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_database.yaml index b633a7dfe96..ea13499346f 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_database.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_database.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_database000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001","name":"cli_test_cosmosdb_sql_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-18T20:19:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001","name":"cli_test_cosmosdb_sql_database000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:23:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 20:19:12 GMT + - Thu, 18 Jun 2020 20:23:51 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1480' + - '1527' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:15 GMT + - Thu, 18 Jun 2020 20:23:58 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 pragma: - no-cache server: @@ -108,7 +108,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: Ok @@ -126,10 +126,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +139,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:46 GMT + - Thu, 18 Jun 2020 20:24:29 GMT pragma: - no-cache server: @@ -175,10 +175,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +188,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:16 GMT + - Thu, 18 Jun 2020 20:24:59 GMT pragma: - no-cache server: @@ -224,10 +224,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +237,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:47 GMT + - Thu, 18 Jun 2020 20:25:29 GMT pragma: - no-cache server: @@ -273,10 +273,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +286,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:18 GMT + - Thu, 18 Jun 2020 20:25:59 GMT pragma: - no-cache server: @@ -322,10 +322,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +335,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:48 GMT + - Thu, 18 Jun 2020 20:26:29 GMT pragma: - no-cache server: @@ -371,10 +371,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +384,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:18 GMT + - Thu, 18 Jun 2020 20:27:00 GMT pragma: - no-cache server: @@ -420,10 +420,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +433,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:48 GMT + - Thu, 18 Jun 2020 20:27:30 GMT pragma: - no-cache server: @@ -469,10 +469,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +482,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:18 GMT + - Thu, 18 Jun 2020 20:28:01 GMT pragma: - no-cache server: @@ -518,10 +518,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +531,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:49 GMT + - Thu, 18 Jun 2020 20:28:31 GMT pragma: - no-cache server: @@ -567,10 +567,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +580,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:19 GMT + - Thu, 18 Jun 2020 20:29:01 GMT pragma: - no-cache server: @@ -616,10 +616,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +629,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:49 GMT + - Thu, 18 Jun 2020 20:29:31 GMT pragma: - no-cache server: @@ -665,10 +665,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +678,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:19 GMT + - Thu, 18 Jun 2020 20:30:02 GMT pragma: - no-cache server: @@ -714,10 +714,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +727,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:50 GMT + - Thu, 18 Jun 2020 20:30:32 GMT pragma: - no-cache server: @@ -763,10 +763,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +776,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:21 GMT + - Thu, 18 Jun 2020 20:31:02 GMT pragma: - no-cache server: @@ -812,10 +812,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:51 GMT + - Thu, 18 Jun 2020 20:31:33 GMT pragma: - no-cache server: @@ -861,10 +861,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:21 GMT + - Thu, 18 Jun 2020 20:32:03 GMT pragma: - no-cache server: @@ -910,10 +910,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:51 GMT + - Thu, 18 Jun 2020 20:32:34 GMT pragma: - no-cache server: @@ -959,10 +959,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:22 GMT + - Thu, 18 Jun 2020 20:33:04 GMT pragma: - no-cache server: @@ -1008,10 +1008,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:52 GMT + - Thu, 18 Jun 2020 20:33:34 GMT pragma: - no-cache server: @@ -1057,10 +1057,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1070,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:22 GMT + - Thu, 18 Jun 2020 20:34:04 GMT pragma: - no-cache server: @@ -1106,10 +1106,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1119,11 +1119,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:52 GMT + - Thu, 18 Jun 2020 20:34:34 GMT pragma: - no-cache server: @@ -1155,10 +1155,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1168,11 +1168,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:22 GMT + - Thu, 18 Jun 2020 20:35:05 GMT pragma: - no-cache server: @@ -1204,10 +1204,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1217,11 +1217,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:53 GMT + - Thu, 18 Jun 2020 20:35:35 GMT pragma: - no-cache server: @@ -1253,10 +1253,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1266,11 +1266,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:23 GMT + - Thu, 18 Jun 2020 20:36:05 GMT pragma: - no-cache server: @@ -1302,10 +1302,451 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:36:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:37:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:37:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:40:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:40:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1315,11 +1756,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7dceea2b-aef5-4465-b182-4746a4c3e02b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/173e30cd-fb40-4252-9b26-5337354cb546?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:54 GMT + - Thu, 18 Jun 2020 20:41:07 GMT pragma: - no-cache server: @@ -1351,29 +1792,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1785' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:54 GMT + - Thu, 18 Jun 2020 20:41:08 GMT pragma: - no-cache server: @@ -1405,31 +1846,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1785' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:54 GMT + - Thu, 18 Jun 2020 20:41:08 GMT pragma: - no-cache server: @@ -1461,27 +1902,27 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: - {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 9d2bfcfd-9946-11ea-a51d-a08cfdd714a6, - Request URI: /apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/63151387-a9cb-4f95-a27a-2a789192db68/partitions/42ae57fc-941a-4974-b439-a2aabca3ef63/replicas/132342944474735507s, - RequestStats: \\r\\nRequestStartTime: 2020-05-18T20:31:56.3588826Z, RequestEndTime: - 2020-05-18T20:31:56.3588826Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-05-18T20:31:56.3588826Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.19:11000/apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/63151387-a9cb-4f95-a27a-2a789192db68/partitions/42ae57fc-941a-4974-b439-a2aabca3ef63/replicas/132342944474735507s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + {\\\"Errors\\\":[\\\"Resource Not Found\\\"]}\\r\\nActivityId: 0a6b2ac8-b1a4-11ea-9385-b46bfc3d8f4d, + Request URI: /apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/2f22430e-a83f-40c4-b331-c98fdd8b1a9e/partitions/69c2e748-aaeb-4a9f-bd9c-d3b47d4c160d/replicas/132369457507904078s, + RequestStats: \\r\\nRequestStartTime: 2020-06-18T20:41:10.4260739Z, RequestEndTime: + 2020-06-18T20:41:10.4260739Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-06-18T20:41:10.4260739Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.22:11000/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/2f22430e-a83f-40c4-b331-c98fdd8b1a9e/partitions/69c2e748-aaeb-4a9f-bd9c-d3b47d4c160d/replicas/132369457507904078s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: - Read\\r\\nResponseTime: 2020-05-18T20:31:56.3588826Z, StoreResult: StorePhysicalAddress: - rntbd://10.0.0.20:11300/apps/05e5cede-11b4-4d8a-9d2d-dd9f0eb67499/services/63151387-a9cb-4f95-a27a-2a789192db68/partitions/42ae57fc-941a-4974-b439-a2aabca3ef63/replicas/132342947890536059s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + Read\\r\\nResponseTime: 2020-06-18T20:41:10.4260739Z, StoreResult: StorePhysicalAddress: + rntbd://10.0.0.28:11000/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/2f22430e-a83f-40c4-b331-c98fdd8b1a9e/partitions/69c2e748-aaeb-4a9f-bd9c-d3b47d4c160d/replicas/132369540877325387s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 0, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Database, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -1491,11 +1932,11 @@ interactions: content-length: - '1706' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi/sqlDatabases/clipulg2flzfm6i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy/sqlDatabases/clizxj246ercjgg?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:55 GMT + - Thu, 18 Jun 2020 20:41:10 GMT pragma: - no-cache server: @@ -1527,30 +1968,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ed3aca8-d2b2-42f3-a65f-b2bde4833f2d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0136859-e8e3-4f99-ad9d-41b8979b5101?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi/sqlDatabases/clipulg2flzfm6i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy/sqlDatabases/clizxj246ercjgg?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:57 GMT + - Thu, 18 Jun 2020 20:41:11 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/5ed3aca8-d2b2-42f3-a65f-b2bde4833f2d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/a0136859-e8e3-4f99-ad9d-41b8979b5101?api-version=2020-04-01 pragma: - no-cache server: @@ -1562,7 +2003,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1580,10 +2021,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ed3aca8-d2b2-42f3-a65f-b2bde4833f2d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0136859-e8e3-4f99-ad9d-41b8979b5101?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1593,11 +2034,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5ed3aca8-d2b2-42f3-a65f-b2bde4833f2d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a0136859-e8e3-4f99-ad9d-41b8979b5101?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:27 GMT + - Thu, 18 Jun 2020 20:41:42 GMT pragma: - no-cache server: @@ -1629,24 +2070,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"9w0fAA==","_self":"dbs/9w0fAA==/","_etag":"\"0000e200-0000-0700-0000-5ec2f0c10000\"","_colls":"colls/","_users":"users/","_ts":1589833921}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Z88eAA==","_self":"dbs/Z88eAA==/","_etag":"\"00003b05-0000-0700-0000-5eebd16b0000\"","_colls":"colls/","_users":"users/","_ts":1592512875}}}' headers: cache-control: - no-store, no-cache content-length: - '526' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi/sqlDatabases/clipulg2flzfm6i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy/sqlDatabases/clizxj246ercjgg?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:27 GMT + - Thu, 18 Jun 2020 20:41:42 GMT pragma: - no-cache server: @@ -1678,26 +2119,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"9w0fAA==","_self":"dbs/9w0fAA==/","_etag":"\"0000e200-0000-0700-0000-5ec2f0c10000\"","_colls":"colls/","_users":"users/","_ts":1589833921}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Z88eAA==","_self":"dbs/Z88eAA==/","_etag":"\"00003b05-0000-0700-0000-5eebd16b0000\"","_colls":"colls/","_users":"users/","_ts":1592512875}}}' headers: cache-control: - no-store, no-cache content-length: - '526' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi/sqlDatabases/clipulg2flzfm6i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy/sqlDatabases/clizxj246ercjgg?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:29 GMT + - Thu, 18 Jun 2020 20:41:44 GMT pragma: - no-cache server: @@ -1729,26 +2170,26 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"9w0fAA==","_self":"dbs/9w0fAA==/","_etag":"\"0000e200-0000-0700-0000-5ec2f0c10000\"","_colls":"colls/","_users":"users/","_ts":1589833921}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Z88eAA==","_self":"dbs/Z88eAA==/","_etag":"\"00003b05-0000-0700-0000-5eebd16b0000\"","_colls":"colls/","_users":"users/","_ts":1592512875}}}]}' headers: cache-control: - no-store, no-cache content-length: - '538' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi/sqlDatabases?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy/sqlDatabases?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:31 GMT + - Thu, 18 Jun 2020 20:41:46 GMT pragma: - no-cache server: @@ -1780,26 +2221,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"9w0fAA==","_self":"dbs/9w0fAA==/","_etag":"\"0000e200-0000-0700-0000-5ec2f0c10000\"","_colls":"colls/","_users":"users/","_ts":1589833921}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Z88eAA==","_self":"dbs/Z88eAA==/","_etag":"\"00003b05-0000-0700-0000-5eebd16b0000\"","_colls":"colls/","_users":"users/","_ts":1592512875}}}' headers: cache-control: - no-store, no-cache content-length: - '526' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi/sqlDatabases/clipulg2flzfm6i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy/sqlDatabases/clizxj246ercjgg?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:33 GMT + - Thu, 18 Jun 2020 20:41:47 GMT pragma: - no-cache server: @@ -1833,30 +2274,30 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/943536eb-7619-45ee-bd4a-e51405a37aff?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3248a46f-7fee-4124-95b4-57fccf111811?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi/sqlDatabases/clipulg2flzfm6i?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy/sqlDatabases/clizxj246ercjgg?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:34 GMT + - Thu, 18 Jun 2020 20:41:49 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/943536eb-7619-45ee-bd4a-e51405a37aff?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases/cli000002/operationResults/3248a46f-7fee-4124-95b4-57fccf111811?api-version=2020-04-01 pragma: - no-cache server: @@ -1886,10 +2327,10 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/943536eb-7619-45ee-bd4a-e51405a37aff?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3248a46f-7fee-4124-95b4-57fccf111811?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1899,11 +2340,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/943536eb-7619-45ee-bd4a-e51405a37aff?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/3248a46f-7fee-4124-95b4-57fccf111811?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:04 GMT + - Thu, 18 Jun 2020 20:42:19 GMT pragma: - no-cache server: @@ -1935,12 +2376,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_database000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/sqlDatabases?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -1950,11 +2391,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_databasepgtwd2xtldo7jzmbmcy2zv6pxbb4x653lwibafdr3mwwm/providers/Microsoft.DocumentDB/databaseAccounts/clirs55fqawyuwi/sqlDatabases?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_databasetv64mhthje2ocu65t4xxr7cs6yudbvh7nkfvssfhycoop/providers/Microsoft.DocumentDB/databaseAccounts/cliwanhhigv52jy/sqlDatabases?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:05 GMT + - Thu, 18 Jun 2020 20:42:20 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_resource_max_throughput.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_resource_max_throughput.yaml new file mode 100644 index 00000000000..9dfcc324c20 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_resource_max_throughput.yaml @@ -0,0 +1,2323 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_resource_max_throughput000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001","name":"cli_test_cosmosdb_sql_resource_max_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:23:50Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 18 Jun 2020 20:23: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: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '219' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + cache-control: + - no-store, no-cache + content-length: + - '1527' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:23:59 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:24:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:25:00 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:25:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:27:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:27:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:02 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:02 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:30:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:30:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:31:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:31:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:32:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:32:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:33:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:33:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:34:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:34:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:35:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:35:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:36:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:36:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:37:08 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:37:40 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/836dd1e8-088d-4eff-8df3-641fd1c63ed4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1832' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1832' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:11 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"autoscaleSettings": + {"maxThroughput": 6000}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + Content-Length: + - '114' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -n --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003?api-version=2020-04-01 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/94d3a840-6602-4178-b152-d83196dae5a1?api-version=2020-04-01 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:12 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/operationResults/94d3a840-6602-4178-b152-d83196dae5a1?api-version=2020-04-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/94d3a840-6602-4178-b152-d83196dae5a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/94d3a840-6602-4178-b152-d83196dae5a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:43 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database create + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"4PpaAA==","_self":"dbs/4PpaAA==/","_etag":"\"0000fc00-0000-0700-0000-5eebd0ba0000\"","_colls":"colls/","_users":"users/","_ts":1592512698}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '526' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:44 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database throughput show + Connection: + - keep-alive + ParameterSetName: + - -g -a -n + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings","name":"hUA3","properties":{"resource":{"throughput":600,"autoscaleSettings":{"maxThroughput":6000},"minimumThroughput":"4000"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '479' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye/throughputSettings/default?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:45 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"autoscaleSettings": {"maxThroughput": 8000}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database throughput update + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -n --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5216a29b-da87-4a31-a30a-f04a5dc38129?api-version=2020-04-01 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye/throughputSettings/default?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:38:47 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default/operationResults/5216a29b-da87-4a31-a30a-f04a5dc38129?api-version=2020-04-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database throughput update + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5216a29b-da87-4a31-a30a-f04a5dc38129?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5216a29b-da87-4a31-a30a-f04a5dc38129?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:18 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql database throughput update + Connection: + - keep-alive + ParameterSetName: + - -g -a -n --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings","name":"hUA3","properties":{"resource":{"throughput":600,"autoscaleSettings":{"maxThroughput":8000},"minimumThroughput":"4000"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '479' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye/throughputSettings/default?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:19 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"id": "cli000004", "indexingPolicy": {"automatic": + true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": + [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], + "kind": "Hash"}}, "options": {"autoscaleSettings": {"maxThroughput": 6000}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + Content-Length: + - '328' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -d -n -p --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004?api-version=2020-04-01 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fe7f2f12-65b4-4c64-b5dc-bec695d28e3d?api-version=2020-04-01 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye/containers/cliad7ecd6v225n?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:21 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/operationResults/fe7f2f12-65b4-4c64-b5dc-bec695d28e3d?api-version=2020-04-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fe7f2f12-65b4-4c64-b5dc-bec695d28e3d?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fe7f2f12-65b4-4c64-b5dc-bec695d28e3d?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:52 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container create + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n -p --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000004","properties":{"resource":{"id":"cli000004","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"4PpaAKclEdM=","_ts":1592512769,"_self":"dbs/4PpaAA==/colls/4PpaAKclEdM=/","_etag":"\"00000201-0000-0700-0000-5eebd1010000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1121' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye/containers/cliad7ecd6v225n?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:52 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container throughput show + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings","name":"H+Tg","properties":{"resource":{"throughput":600,"autoscaleSettings":{"maxThroughput":6000},"minimumThroughput":"4000"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '517' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye/containers/cliad7ecd6v225n/throughputSettings/default?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: '{"properties": {"resource": {"autoscaleSettings": {"maxThroughput": 8000}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container throughput update + Connection: + - keep-alive + Content-Length: + - '76' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -a -d -n --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default?api-version=2020-04-01 + response: + body: + string: '{"status":"Enqueued"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fcc422f5-5385-4de4-8431-68aac16caccb?api-version=2020-04-01 + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye/containers/cliad7ecd6v225n/throughputSettings/default?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:55 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default/operationResults/fcc422f5-5385-4de4-8431-68aac16caccb?api-version=2020-04-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container throughput update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fcc422f5-5385-4de4-8431-68aac16caccb?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fcc422f5-5385-4de4-8431-68aac16caccb?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:40:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb sql container throughput update + Connection: + - keep-alive + ParameterSetName: + - -g -a -d -n --max-throughput + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings","name":"H+Tg","properties":{"resource":{"throughput":600,"autoscaleSettings":{"maxThroughput":8000},"minimumThroughput":"4000"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '517' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_max_throughputhksanh45dyuco5jsth6dmvtklivwdu/providers/Microsoft.DocumentDB/databaseAccounts/clieo2qamhcpo5i/sqlDatabases/clitinbyx2cojye/containers/cliad7ecd6v225n/throughputSettings/default?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:40:27 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_resource_throughput.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_resource_throughput.yaml index c9a5e92597a..73688a5fae3 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_resource_throughput.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_resource_throughput.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_resource_throughput000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001","name":"cli_test_cosmosdb_sql_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:09:28Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001","name":"cli_test_cosmosdb_sql_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:22:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:09:29 GMT + - Thu, 18 Jun 2020 20:22:12 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1409' + - '1527' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:09:32 GMT + - Thu, 18 Jun 2020 20:22:20 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,842 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:22:51 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:23:21 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:23:51 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:24:22 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:24:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:25:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:25:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:27:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:27:55 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:56 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:57 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:30:28 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:30:58 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,24 +959,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:10:02 GMT + - Thu, 18 Jun 2020 20:31:28 GMT pragma: - no-cache server: @@ -157,7 +990,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,24 +1008,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:10:32 GMT + - Thu, 18 Jun 2020 20:31:59 GMT pragma: - no-cache server: @@ -206,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,24 +1057,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:02 GMT + - Thu, 18 Jun 2020 20:32:29 GMT pragma: - no-cache server: @@ -255,7 +1088,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,24 +1106,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:11:33 GMT + - Thu, 18 Jun 2020 20:33:00 GMT pragma: - no-cache server: @@ -304,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,24 +1155,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:12:03 GMT + - Thu, 18 Jun 2020 20:33:31 GMT pragma: - no-cache server: @@ -353,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,24 +1204,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:12:33 GMT + - Thu, 18 Jun 2020 20:34:01 GMT pragma: - no-cache server: @@ -402,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,24 +1253,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:03 GMT + - Thu, 18 Jun 2020 20:34:31 GMT pragma: - no-cache server: @@ -451,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,24 +1302,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:33 GMT + - Thu, 18 Jun 2020 20:35:02 GMT pragma: - no-cache server: @@ -500,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,24 +1351,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:14:04 GMT + - Thu, 18 Jun 2020 20:35:32 GMT pragma: - no-cache server: @@ -549,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,24 +1400,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:14:34 GMT + - Thu, 18 Jun 2020 20:36:03 GMT pragma: - no-cache server: @@ -598,7 +1431,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,24 +1449,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:15:04 GMT + - Thu, 18 Jun 2020 20:36:33 GMT pragma: - no-cache server: @@ -647,7 +1480,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,24 +1498,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:15:35 GMT + - Thu, 18 Jun 2020 20:37:03 GMT pragma: - no-cache server: @@ -696,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,24 +1547,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:16:04 GMT + - Thu, 18 Jun 2020 20:37:33 GMT pragma: - no-cache server: @@ -745,7 +1578,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,24 +1596,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:16:35 GMT + - Thu, 18 Jun 2020 20:38:08 GMT pragma: - no-cache server: @@ -794,7 +1627,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,24 +1645,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6be12a87-6196-46fd-8e38-badb66505c58?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:05 GMT + - Thu, 18 Jun 2020 20:38:39 GMT pragma: - no-cache server: @@ -843,7 +1676,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,29 +1694,176 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/556d3fb8-9ec9-45ad-9a85-9e1abd700c9b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:40:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:05 GMT + - Thu, 18 Jun 2020 20:40:09 GMT pragma: - no-cache server: @@ -897,7 +1877,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -915,31 +1895,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:06 GMT + - Thu, 18 Jun 2020 20:40:10 GMT pragma: - no-cache server: @@ -953,13 +1933,13 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok - request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"Throughput": - "1000"}}}' + body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"throughput": + 1000}}}' headers: Accept: - application/json @@ -970,36 +1950,36 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '88' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/964a33ac-1d13-44b1-9605-30428b336637?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2763faf0-6082-4109-881b-39d97ef5260f?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:06 GMT + - Thu, 18 Jun 2020 20:40:12 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/operationResults/964a33ac-1d13-44b1-9605-30428b336637?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/operationResults/2763faf0-6082-4109-881b-39d97ef5260f?api-version=2020-04-01 pragma: - no-cache server: @@ -1009,9 +1989,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1029,24 +2009,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/964a33ac-1d13-44b1-9605-30428b336637?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2763faf0-6082-4109-881b-39d97ef5260f?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/964a33ac-1d13-44b1-9605-30428b336637?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2763faf0-6082-4109-881b-39d97ef5260f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:37 GMT + - Thu, 18 Jun 2020 20:40:42 GMT pragma: - no-cache server: @@ -1060,7 +2040,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1078,24 +2058,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"LtUqAA==","_self":"dbs/LtUqAA==/","_etag":"\"0000b202-0000-0700-0000-5df043960000\"","_colls":"colls/","_users":"users/","_ts":1576027030}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"cWw3AA==","_self":"dbs/cWw3AA==/","_etag":"\"00008004-0000-0700-0000-5eebd1310000\"","_colls":"colls/","_users":"users/","_ts":1592512817}}}' headers: cache-control: - no-store, no-cache content-length: - '526' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:37 GMT + - Thu, 18 Jun 2020 20:40:43 GMT pragma: - no-cache server: @@ -1109,7 +2089,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1127,26 +2107,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings","name":"IuCo","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings","name":"fFva","properties":{"resource":{"throughput":1000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '461' + - '436' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:39 GMT + - Thu, 18 Jun 2020 20:40:46 GMT pragma: - no-cache server: @@ -1160,7 +2140,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1182,30 +2162,30 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2ab855-064d-4c81-b3c3-5b503ceca7ef?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b930ae84-d2f1-4c6f-a8c4-8aec67a883c9?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:41 GMT + - Thu, 18 Jun 2020 20:40:47 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default/operationResults/ca2ab855-064d-4c81-b3c3-5b503ceca7ef?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default/operationResults/b930ae84-d2f1-4c6f-a8c4-8aec67a883c9?api-version=2020-04-01 pragma: - no-cache server: @@ -1215,9 +2195,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1235,24 +2215,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2ab855-064d-4c81-b3c3-5b503ceca7ef?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b930ae84-d2f1-4c6f-a8c4-8aec67a883c9?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2ab855-064d-4c81-b3c3-5b503ceca7ef?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b930ae84-d2f1-4c6f-a8c4-8aec67a883c9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:11 GMT + - Thu, 18 Jun 2020 20:41:19 GMT pragma: - no-cache server: @@ -1266,7 +2246,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1284,24 +2264,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings","name":"IuCo","properties":{"resource":{"throughput":2000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings","name":"fFva","properties":{"resource":{"throughput":2000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '461' + - '436' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:12 GMT + - Thu, 18 Jun 2020 20:41:20 GMT pragma: - no-cache server: @@ -1315,7 +2295,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1323,7 +2303,7 @@ interactions: body: '{"properties": {"resource": {"id": "cli000004", "indexingPolicy": {"automatic": true, "indexingMode": "consistent", "includedPaths": [{"path": "/*"}], "excludedPaths": [{"path": "/\"_etag\"/?"}]}, "partitionKey": {"paths": ["/thePartitionKey"], - "kind": "Hash"}}, "options": {"Throughput": "1000"}}}' + "kind": "Hash"}}, "options": {"throughput": 1000}}}' headers: Accept: - application/json @@ -1334,36 +2314,36 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '302' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -d -n -p --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/82a42f90-8538-4af5-bd4d-bd0fadcb106a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eb41509e-2610-4186-ade7-c27c8ee00f16?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb/containers/cliubee4d5gvorc?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j/containers/clidorfex32hvyg?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:15 GMT + - Thu, 18 Jun 2020 20:41:22 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/operationResults/82a42f90-8538-4af5-bd4d-bd0fadcb106a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/operationResults/eb41509e-2610-4186-ade7-c27c8ee00f16?api-version=2020-04-01 pragma: - no-cache server: @@ -1373,9 +2353,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1393,24 +2373,24 @@ interactions: ParameterSetName: - -g -a -d -n -p --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/82a42f90-8538-4af5-bd4d-bd0fadcb106a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eb41509e-2610-4186-ade7-c27c8ee00f16?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/82a42f90-8538-4af5-bd4d-bd0fadcb106a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/eb41509e-2610-4186-ade7-c27c8ee00f16?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:44 GMT + - Thu, 18 Jun 2020 20:41:51 GMT pragma: - no-cache server: @@ -1424,7 +2404,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1442,24 +2422,24 @@ interactions: ParameterSetName: - -g -a -d -n -p --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000004","properties":{"resource":{"id":"cli000004","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"LtUqANzyIhU=","_ts":1576027097,"_self":"dbs/LtUqAA==/colls/LtUqANzyIhU=/","_etag":"\"0000b802-0000-0700-0000-5df043d90000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000004","properties":{"resource":{"id":"cli000004","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"cWw3AKaZ3TU=","_ts":1592512886,"_self":"dbs/cWw3AA==/colls/cWw3AKaZ3TU=/","_etag":"\"00008604-0000-0700-0000-5eebd1760000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1121' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb/containers/cliubee4d5gvorc?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j/containers/clidorfex32hvyg?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:45 GMT + - Thu, 18 Jun 2020 20:41:52 GMT pragma: - no-cache server: @@ -1473,7 +2453,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1491,26 +2471,26 @@ interactions: ParameterSetName: - -g -a -d -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings","name":"SFpY","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings","name":"+ERE","properties":{"resource":{"throughput":1000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '499' + - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb/containers/cliubee4d5gvorc/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j/containers/clidorfex32hvyg/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:46 GMT + - Thu, 18 Jun 2020 20:41:54 GMT pragma: - no-cache server: @@ -1524,7 +2504,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1546,30 +2526,30 @@ interactions: ParameterSetName: - -g -a -d -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5c85b55b-5f2b-4012-acce-bdace77eff75?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a1c159e-dac6-4ae4-8619-cc3ee9dfd8c1?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb/containers/cliubee4d5gvorc/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j/containers/clidorfex32hvyg/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:48 GMT + - Thu, 18 Jun 2020 20:41:56 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default/operationResults/5c85b55b-5f2b-4012-acce-bdace77eff75?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default/operationResults/4a1c159e-dac6-4ae4-8619-cc3ee9dfd8c1?api-version=2020-04-01 pragma: - no-cache server: @@ -1579,9 +2559,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1599,24 +2579,24 @@ interactions: ParameterSetName: - -g -a -d -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5c85b55b-5f2b-4012-acce-bdace77eff75?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a1c159e-dac6-4ae4-8619-cc3ee9dfd8c1?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5c85b55b-5f2b-4012-acce-bdace77eff75?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4a1c159e-dac6-4ae4-8619-cc3ee9dfd8c1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:19 GMT + - Thu, 18 Jun 2020 20:42:27 GMT pragma: - no-cache server: @@ -1630,7 +2610,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1648,24 +2628,24 @@ interactions: ParameterSetName: - -g -a -d -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings","name":"SFpY","properties":{"resource":{"throughput":2000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/sqlDatabases/cli000003/containers/cli000004/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings","name":"+ERE","properties":{"resource":{"throughput":2000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '499' + - '474' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_resource_throughput6eamjm6pxomthh52qx2jfvqvl4ubgn4dwq/providers/Microsoft.DocumentDB/databaseAccounts/climbhw4qqn6vvt/sqlDatabases/cli54wyoa4v2nwb/containers/cliubee4d5gvorc/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_resource_throughputoxb3xf2uh7a2zeovyclpmrthvzyszs6ird/providers/Microsoft.DocumentDB/databaseAccounts/cligezdmc7rvcgq/sqlDatabases/clihjhcyvbwkm5j/containers/clidorfex32hvyg/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:19 GMT + - Thu, 18 Jun 2020 20:42:27 GMT pragma: - no-cache server: @@ -1679,7 +2659,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_stored_procedure.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_stored_procedure.yaml index 77c0869a383..cdfbd13317b 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_stored_procedure.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_stored_procedure.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_stored_procedure000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001","name":"cli_test_cosmosdb_sql_stored_procedure000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-03-03T15:32:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001","name":"cli_test_cosmosdb_sql_stored_procedure000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:23:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Mar 2020 15:32:43 GMT + - Thu, 18 Jun 2020 20:23:50 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005","name":"cli000005","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1409' + - '1527' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:32:48 GMT + - Thu, 18 Jun 2020 20:23:59 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/operationResults/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/operationResults/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,597 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:24:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:24:59 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:25:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:00 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:27:00 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:27:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:30:02 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,10 +714,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +727,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:33:19 GMT + - Thu, 18 Jun 2020 20:30:32 GMT pragma: - no-cache server: @@ -157,7 +745,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -175,10 +763,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +776,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:33:48 GMT + - Thu, 18 Jun 2020 20:31:03 GMT pragma: - no-cache server: @@ -206,7 +794,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -224,10 +812,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:34:19 GMT + - Thu, 18 Jun 2020 20:31:32 GMT pragma: - no-cache server: @@ -255,7 +843,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -273,10 +861,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:34:50 GMT + - Thu, 18 Jun 2020 20:32:03 GMT pragma: - no-cache server: @@ -304,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -322,10 +910,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:35:20 GMT + - Thu, 18 Jun 2020 20:32:33 GMT pragma: - no-cache server: @@ -353,7 +941,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -371,10 +959,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:35:50 GMT + - Thu, 18 Jun 2020 20:33:04 GMT pragma: - no-cache server: @@ -402,7 +990,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -420,10 +1008,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:36:20 GMT + - Thu, 18 Jun 2020 20:33:34 GMT pragma: - no-cache server: @@ -451,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -469,10 +1057,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:36:50 GMT + - Thu, 18 Jun 2020 20:34:04 GMT pragma: - no-cache server: @@ -500,7 +1088,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -518,10 +1106,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +1119,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:37:21 GMT + - Thu, 18 Jun 2020 20:34:35 GMT pragma: - no-cache server: @@ -549,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -567,10 +1155,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +1168,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:37:51 GMT + - Thu, 18 Jun 2020 20:35:05 GMT pragma: - no-cache server: @@ -598,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -616,10 +1204,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +1217,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:38:21 GMT + - Thu, 18 Jun 2020 20:35:35 GMT pragma: - no-cache server: @@ -647,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -665,10 +1253,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +1266,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:38:51 GMT + - Thu, 18 Jun 2020 20:36:06 GMT pragma: - no-cache server: @@ -696,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -714,10 +1302,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +1315,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:39:21 GMT + - Thu, 18 Jun 2020 20:36:36 GMT pragma: - no-cache server: @@ -745,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -763,10 +1351,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +1364,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:39:52 GMT + - Thu, 18 Jun 2020 20:37:07 GMT pragma: - no-cache server: @@ -794,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -812,10 +1400,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +1413,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:40:22 GMT + - Thu, 18 Jun 2020 20:37:37 GMT pragma: - no-cache server: @@ -843,7 +1431,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -861,10 +1449,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +1462,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:40:53 GMT + - Thu, 18 Jun 2020 20:38:08 GMT pragma: - no-cache server: @@ -892,7 +1480,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -910,10 +1498,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -923,11 +1511,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/020c3ef1-f9c9-478d-9e17-182cd0f59fc7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0a2c1d07-fe30-44a9-a717-13f6c2e04337?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:23 GMT + - Thu, 18 Jun 2020 20:38:38 GMT pragma: - no-cache server: @@ -941,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -959,29 +1547,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005","name":"cli000005","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:23 GMT + - Thu, 18 Jun 2020 20:38:38 GMT pragma: - no-cache server: @@ -995,7 +1583,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1013,31 +1601,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005","name":"cli000005","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:24 GMT + - Thu, 18 Jun 2020 20:38:39 GMT pragma: - no-cache server: @@ -1051,7 +1639,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1073,30 +1661,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d1bffbf3-2c0e-4e54-af2e-63d4193e2983?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e40a5cad-c2b9-4523-bf6b-842252d92949?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:24 GMT + - Thu, 18 Jun 2020 20:38:40 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/operationResults/d1bffbf3-2c0e-4e54-af2e-63d4193e2983?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/operationResults/e40a5cad-c2b9-4523-bf6b-842252d92949?api-version=2020-04-01 pragma: - no-cache server: @@ -1106,9 +1694,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1126,10 +1714,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d1bffbf3-2c0e-4e54-af2e-63d4193e2983?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e40a5cad-c2b9-4523-bf6b-842252d92949?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1139,11 +1727,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d1bffbf3-2c0e-4e54-af2e-63d4193e2983?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e40a5cad-c2b9-4523-bf6b-842252d92949?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:55 GMT + - Thu, 18 Jun 2020 20:39:11 GMT pragma: - no-cache server: @@ -1157,7 +1745,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1175,24 +1763,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"CEsfAA==","_self":"dbs/CEsfAA==/","_etag":"\"00007e0f-0000-0700-0000-5e5e7aa90000\"","_colls":"colls/","_users":"users/","_ts":1583250089}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"Z4J9AA==","_self":"dbs/Z4J9AA==/","_etag":"\"00000d01-0000-0700-0000-5eebd0d40000\"","_colls":"colls/","_users":"users/","_ts":1592512724}}}' headers: cache-control: - no-store, no-cache content-length: - '526' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:56 GMT + - Thu, 18 Jun 2020 20:39:12 GMT pragma: - no-cache server: @@ -1206,7 +1794,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1231,30 +1819,30 @@ interactions: ParameterSetName: - -g -a -d -n -p User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9a9f108f-7c39-4caa-b4be-f0d6e8fa30b0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/74ff4b97-b790-4c1d-b88e-5829a68d6721?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:57 GMT + - Thu, 18 Jun 2020 20:39:14 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/operationResults/9a9f108f-7c39-4caa-b4be-f0d6e8fa30b0?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/operationResults/74ff4b97-b790-4c1d-b88e-5829a68d6721?api-version=2020-04-01 pragma: - no-cache server: @@ -1264,7 +1852,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1284,10 +1872,10 @@ interactions: ParameterSetName: - -g -a -d -n -p User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9a9f108f-7c39-4caa-b4be-f0d6e8fa30b0?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/74ff4b97-b790-4c1d-b88e-5829a68d6721?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1297,11 +1885,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9a9f108f-7c39-4caa-b4be-f0d6e8fa30b0?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/74ff4b97-b790-4c1d-b88e-5829a68d6721?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:29 GMT + - Thu, 18 Jun 2020 20:39:44 GMT pragma: - no-cache server: @@ -1315,7 +1903,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1333,24 +1921,24 @@ interactions: ParameterSetName: - -g -a -d -n -p User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"CEsfAPkQPMg=","_ts":1583250122,"_self":"dbs/CEsfAA==/colls/CEsfAPkQPMg=/","_etag":"\"0000820f-0000-0700-0000-5e5e7aca0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"Z4J9APkKrbM=","_ts":1592512759,"_self":"dbs/Z4J9AA==/colls/Z4J9APkKrbM=/","_etag":"\"00000f01-0000-0700-0000-5eebd0f70000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1121' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:29 GMT + - Thu, 18 Jun 2020 20:39:45 GMT pragma: - no-cache server: @@ -1364,7 +1952,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1387,30 +1975,30 @@ interactions: ParameterSetName: - --resource-group -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/981e5fd6-92c4-4858-8360-62f4b9480c69?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3a9d7e6-dc33-492a-82ef-4556e22d12f4?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h/storedProcedures/clipwnzc7jezyow?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5/storedProcedures/cli7jdmnje2urjd?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:31 GMT + - Thu, 18 Jun 2020 20:39:47 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004/operationResults/981e5fd6-92c4-4858-8360-62f4b9480c69?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004/operationResults/f3a9d7e6-dc33-492a-82ef-4556e22d12f4?api-version=2020-04-01 pragma: - no-cache server: @@ -1420,9 +2008,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -1440,10 +2028,10 @@ interactions: ParameterSetName: - --resource-group -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/981e5fd6-92c4-4858-8360-62f4b9480c69?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3a9d7e6-dc33-492a-82ef-4556e22d12f4?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1453,11 +2041,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/981e5fd6-92c4-4858-8360-62f4b9480c69?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f3a9d7e6-dc33-492a-82ef-4556e22d12f4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:01 GMT + - Thu, 18 Jun 2020 20:40:17 GMT pragma: - no-cache server: @@ -1471,7 +2059,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1489,24 +2077,24 @@ interactions: ParameterSetName: - --resource-group -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody","_rid":"CEsfAPkQPMgBAAAAAAAAgA==","_self":"dbs/CEsfAA==/colls/CEsfAPkQPMg=/sprocs/CEsfAPkQPMgBAAAAAAAAgA==/","_etag":"\"06005767-0000-0700-0000-5e5e7aeb0000\"","_ts":1583250155}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody","_rid":"Z4J9APkKrbMBAAAAAAAAgA==","_self":"dbs/Z4J9AA==/colls/Z4J9APkKrbM=/sprocs/Z4J9APkKrbMBAAAAAAAAgA==/","_etag":"\"2900b626-0000-0700-0000-5eebd1160000\"","_ts":1592512790}}}' headers: cache-control: - no-store, no-cache content-length: - '665' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h/storedProcedures/clipwnzc7jezyow?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5/storedProcedures/cli7jdmnje2urjd?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:01 GMT + - Thu, 18 Jun 2020 20:40:17 GMT pragma: - no-cache server: @@ -1520,7 +2108,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1543,30 +2131,30 @@ interactions: ParameterSetName: - -g -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed86a819-7f99-4ebe-a6da-a037d2b79921?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f00791ae-a9fa-4677-a26b-c44e35629bc8?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h/storedProcedures/clipwnzc7jezyow?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5/storedProcedures/cli7jdmnje2urjd?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:02 GMT + - Thu, 18 Jun 2020 20:40:18 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004/operationResults/ed86a819-7f99-4ebe-a6da-a037d2b79921?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004/operationResults/f00791ae-a9fa-4677-a26b-c44e35629bc8?api-version=2020-04-01 pragma: - no-cache server: @@ -1576,9 +2164,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1596,10 +2184,10 @@ interactions: ParameterSetName: - -g -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed86a819-7f99-4ebe-a6da-a037d2b79921?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f00791ae-a9fa-4677-a26b-c44e35629bc8?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1609,11 +2197,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ed86a819-7f99-4ebe-a6da-a037d2b79921?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f00791ae-a9fa-4677-a26b-c44e35629bc8?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:33 GMT + - Thu, 18 Jun 2020 20:40:49 GMT pragma: - no-cache server: @@ -1627,7 +2215,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1645,24 +2233,24 @@ interactions: ParameterSetName: - -g -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"CEsfAPkQPMgBAAAAAAAAgA==","_self":"dbs/CEsfAA==/colls/CEsfAPkQPMg=/sprocs/CEsfAPkQPMgBAAAAAAAAgA==/","_etag":"\"0600b868-0000-0700-0000-5e5e7b0b0000\"","_ts":1583250187}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"Z4J9APkKrbMBAAAAAAAAgA==","_self":"dbs/Z4J9AA==/colls/Z4J9APkKrbM=/sprocs/Z4J9APkKrbMBAAAAAAAAgA==/","_etag":"\"2900502f-0000-0700-0000-5eebd1370000\"","_ts":1592512823}}}' headers: cache-control: - no-store, no-cache content-length: - '666' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h/storedProcedures/clipwnzc7jezyow?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5/storedProcedures/cli7jdmnje2urjd?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:33 GMT + - Thu, 18 Jun 2020 20:40:50 GMT pragma: - no-cache server: @@ -1676,7 +2264,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1694,26 +2282,26 @@ interactions: ParameterSetName: - -g -a -d -c -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"CEsfAPkQPMgBAAAAAAAAgA==","_self":"dbs/CEsfAA==/colls/CEsfAPkQPMg=/sprocs/CEsfAPkQPMgBAAAAAAAAgA==/","_etag":"\"0600b868-0000-0700-0000-5e5e7b0b0000\"","_ts":1583250187}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"Z4J9APkKrbMBAAAAAAAAgA==","_self":"dbs/Z4J9AA==/colls/Z4J9APkKrbM=/sprocs/Z4J9APkKrbMBAAAAAAAAgA==/","_etag":"\"2900502f-0000-0700-0000-5eebd1370000\"","_ts":1592512823}}}' headers: cache-control: - no-store, no-cache content-length: - '666' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h/storedProcedures/clipwnzc7jezyow?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5/storedProcedures/cli7jdmnje2urjd?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:35 GMT + - Thu, 18 Jun 2020 20:40:52 GMT pragma: - no-cache server: @@ -1727,7 +2315,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1745,26 +2333,26 @@ interactions: ParameterSetName: - -g -a -d -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"CEsfAPkQPMgBAAAAAAAAgA==","_self":"dbs/CEsfAA==/colls/CEsfAPkQPMg=/sprocs/CEsfAPkQPMgBAAAAAAAAgA==/","_etag":"\"0600b868-0000-0700-0000-5e5e7b0b0000\"","_ts":1583250187}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"Z4J9APkKrbMBAAAAAAAAgA==","_self":"dbs/Z4J9AA==/colls/Z4J9APkKrbM=/sprocs/Z4J9APkKrbMBAAAAAAAAgA==/","_etag":"\"2900502f-0000-0700-0000-5eebd1370000\"","_ts":1592512823}}}]}' headers: cache-control: - no-store, no-cache content-length: - '678' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h/storedProcedures?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5/storedProcedures?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:36 GMT + - Thu, 18 Jun 2020 20:40:53 GMT pragma: - no-cache server: @@ -1778,7 +2366,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1798,30 +2386,30 @@ interactions: ParameterSetName: - -g -a -d -c -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c60aa688-6dfa-4b62-b15c-64c1ffe51a95?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dc8cd89b-6e05-4e45-b6bf-009ffccb5514?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h/storedProcedures/clipwnzc7jezyow?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5/storedProcedures/cli7jdmnje2urjd?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:36 GMT + - Thu, 18 Jun 2020 20:40:54 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004/operationResults/c60aa688-6dfa-4b62-b15c-64c1ffe51a95?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures/cli000004/operationResults/dc8cd89b-6e05-4e45-b6bf-009ffccb5514?api-version=2020-04-01 pragma: - no-cache server: @@ -1831,7 +2419,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1851,10 +2439,10 @@ interactions: ParameterSetName: - -g -a -d -c -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c60aa688-6dfa-4b62-b15c-64c1ffe51a95?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dc8cd89b-6e05-4e45-b6bf-009ffccb5514?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1864,11 +2452,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c60aa688-6dfa-4b62-b15c-64c1ffe51a95?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dc8cd89b-6e05-4e45-b6bf-009ffccb5514?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:06 GMT + - Thu, 18 Jun 2020 20:41:26 GMT pragma: - no-cache server: @@ -1882,7 +2470,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1900,12 +2488,12 @@ interactions: ParameterSetName: - -g -a -d -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_stored_procedure000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/storedProcedures?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -1915,11 +2503,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_stored_procedurepyknra3dpqa7rod6zsolalnv3xdz5umyiupic/providers/Microsoft.DocumentDB/databaseAccounts/cliakgffuob2hwl/sqlDatabases/clinylkmet5ymqt/containers/clisinyfldtyr3h/storedProcedures?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_stored_procedureykti3ahsobfttgeyanyaxxvhlwapsepghwoq3/providers/Microsoft.DocumentDB/databaseAccounts/clikmxsh4uoakrt/sqlDatabases/clicgiuew3aovxb/containers/cliov4lil2fzmn5/storedProcedures?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:08 GMT + - Thu, 18 Jun 2020 20:41:28 GMT pragma: - no-cache server: @@ -1933,7 +2521,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_trigger.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_trigger.yaml index 4c135cf1698..ee79ea6fc13 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_trigger.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_trigger.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_trigger000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001","name":"cli_test_cosmosdb_sql_trigger000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-03-03T15:32:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001","name":"cli_test_cosmosdb_sql_trigger000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:24:21Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Mar 2020 15:32:45 GMT + - Thu, 18 Jun 2020 20:24:21 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005","name":"cli000005","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1409' + - '1527' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:32:49 GMT + - Thu, 18 Jun 2020 20:24:28 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/operationResults/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/operationResults/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,989 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:24:58 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:25:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:25:59 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:26:59 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:27:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:00 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:28:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:29:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:30:02 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:30:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:31:02 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:31:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:32:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:32:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:33:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:33:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:34:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:34:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,10 +1106,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +1119,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:33:20 GMT + - Thu, 18 Jun 2020 20:35:06 GMT pragma: - no-cache server: @@ -157,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -175,10 +1155,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +1168,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:33:50 GMT + - Thu, 18 Jun 2020 20:35:37 GMT pragma: - no-cache server: @@ -206,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -224,10 +1204,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +1217,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:34:20 GMT + - Thu, 18 Jun 2020 20:36:07 GMT pragma: - no-cache server: @@ -255,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -273,10 +1253,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +1266,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:34:51 GMT + - Thu, 18 Jun 2020 20:36:37 GMT pragma: - no-cache server: @@ -304,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -322,10 +1302,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +1315,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:35:21 GMT + - Thu, 18 Jun 2020 20:37:07 GMT pragma: - no-cache server: @@ -353,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -371,10 +1351,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +1364,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:35:51 GMT + - Thu, 18 Jun 2020 20:37:38 GMT pragma: - no-cache server: @@ -402,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -420,10 +1400,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +1413,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:36:21 GMT + - Thu, 18 Jun 2020 20:38:07 GMT pragma: - no-cache server: @@ -451,7 +1431,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -469,10 +1449,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +1462,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:36:52 GMT + - Thu, 18 Jun 2020 20:38:38 GMT pragma: - no-cache server: @@ -500,7 +1480,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -518,10 +1498,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +1511,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:37:22 GMT + - Thu, 18 Jun 2020 20:39:08 GMT pragma: - no-cache server: @@ -549,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -567,10 +1547,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +1560,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:37:52 GMT + - Thu, 18 Jun 2020 20:39:38 GMT pragma: - no-cache server: @@ -598,7 +1578,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -616,10 +1596,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +1609,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:38:23 GMT + - Thu, 18 Jun 2020 20:40:08 GMT pragma: - no-cache server: @@ -647,7 +1627,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -665,10 +1645,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +1658,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:38:53 GMT + - Thu, 18 Jun 2020 20:40:38 GMT pragma: - no-cache server: @@ -696,7 +1676,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -714,10 +1694,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +1707,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:39:23 GMT + - Thu, 18 Jun 2020 20:41:09 GMT pragma: - no-cache server: @@ -745,7 +1725,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -763,10 +1743,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +1756,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:40:01 GMT + - Thu, 18 Jun 2020 20:41:39 GMT pragma: - no-cache server: @@ -794,7 +1774,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -812,10 +1792,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +1805,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:40:31 GMT + - Thu, 18 Jun 2020 20:42:09 GMT pragma: - no-cache server: @@ -843,7 +1823,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -861,10 +1841,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +1854,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:01 GMT + - Thu, 18 Jun 2020 20:42:39 GMT pragma: - no-cache server: @@ -892,7 +1872,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -910,10 +1890,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +1903,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:32 GMT + - Thu, 18 Jun 2020 20:43:10 GMT pragma: - no-cache server: @@ -941,7 +1921,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -959,10 +1939,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +1952,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:02 GMT + - Thu, 18 Jun 2020 20:43:40 GMT pragma: - no-cache server: @@ -990,7 +1970,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1008,10 +1988,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1021,11 +2001,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/96478205-e729-46fe-9337-3e98c40d9e98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/202584a1-9e1c-424a-8577-18d516dcfda4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:32 GMT + - Thu, 18 Jun 2020 20:44:11 GMT pragma: - no-cache server: @@ -1039,7 +2019,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1057,29 +2037,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005","name":"cli000005","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:32 GMT + - Thu, 18 Jun 2020 20:44:11 GMT pragma: - no-cache server: @@ -1093,7 +2073,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1111,31 +2091,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005","name":"cli000005","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:33 GMT + - Thu, 18 Jun 2020 20:44:12 GMT pragma: - no-cache server: @@ -1149,7 +2129,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1171,30 +2151,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e53457b2-b14a-46e2-ab1c-9b834af61d78?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77120bbe-b071-4da9-9dd4-1124549cc63d?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:34 GMT + - Thu, 18 Jun 2020 20:44:12 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/operationResults/e53457b2-b14a-46e2-ab1c-9b834af61d78?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/operationResults/77120bbe-b071-4da9-9dd4-1124549cc63d?api-version=2020-04-01 pragma: - no-cache server: @@ -1204,9 +2184,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1224,10 +2204,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e53457b2-b14a-46e2-ab1c-9b834af61d78?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77120bbe-b071-4da9-9dd4-1124549cc63d?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1237,11 +2217,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e53457b2-b14a-46e2-ab1c-9b834af61d78?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/77120bbe-b071-4da9-9dd4-1124549cc63d?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:05 GMT + - Thu, 18 Jun 2020 20:44:44 GMT pragma: - no-cache server: @@ -1255,7 +2235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1273,24 +2253,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"eAxTAA==","_self":"dbs/eAxTAA==/","_etag":"\"00000400-0000-0700-0000-5e5e7aee0000\"","_colls":"colls/","_users":"users/","_ts":1583250158}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"H65YAA==","_self":"dbs/H65YAA==/","_etag":"\"00005804-0000-0700-0000-5eebd2210000\"","_colls":"colls/","_users":"users/","_ts":1592513057}}}' headers: cache-control: - no-store, no-cache content-length: - '526' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:05 GMT + - Thu, 18 Jun 2020 20:44:44 GMT pragma: - no-cache server: @@ -1304,7 +2284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1329,30 +2309,30 @@ interactions: ParameterSetName: - -g -a -d -n -p User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/02c74188-264b-4064-9c84-8770fa6c1800?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4b7e076d-cdf8-4e18-acff-f51086d85c38?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:06 GMT + - Thu, 18 Jun 2020 20:44:46 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/operationResults/02c74188-264b-4064-9c84-8770fa6c1800?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/operationResults/4b7e076d-cdf8-4e18-acff-f51086d85c38?api-version=2020-04-01 pragma: - no-cache server: @@ -1362,9 +2342,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -1382,10 +2362,10 @@ interactions: ParameterSetName: - -g -a -d -n -p User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/02c74188-264b-4064-9c84-8770fa6c1800?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4b7e076d-cdf8-4e18-acff-f51086d85c38?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1395,11 +2375,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/02c74188-264b-4064-9c84-8770fa6c1800?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4b7e076d-cdf8-4e18-acff-f51086d85c38?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:37 GMT + - Thu, 18 Jun 2020 20:45:16 GMT pragma: - no-cache server: @@ -1413,7 +2393,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1431,24 +2411,24 @@ interactions: ParameterSetName: - -g -a -d -n -p User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"eAxTAIq03rY=","_ts":1583250191,"_self":"dbs/eAxTAA==/colls/eAxTAIq03rY=/","_etag":"\"00000600-0000-0700-0000-5e5e7b0f0000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"H65YALtf--Q=","_ts":1592513090,"_self":"dbs/H65YAA==/colls/H65YALtf--Q=/","_etag":"\"00005a04-0000-0700-0000-5eebd2420000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1121' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:38 GMT + - Thu, 18 Jun 2020 20:45:17 GMT pragma: - no-cache server: @@ -1462,7 +2442,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1485,30 +2465,30 @@ interactions: ParameterSetName: - --resource-group -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1dd24112-eb8e-45c7-9cab-d358d34c29b4?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1a086a7a-55db-4445-a3b8-4b9a949cea4b?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn/triggers/cliftevts5v6cx7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3/triggers/cli457b4vl2bjvg?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:39 GMT + - Thu, 18 Jun 2020 20:45:18 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004/operationResults/1dd24112-eb8e-45c7-9cab-d358d34c29b4?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004/operationResults/1a086a7a-55db-4445-a3b8-4b9a949cea4b?api-version=2020-04-01 pragma: - no-cache server: @@ -1518,9 +2498,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1538,10 +2518,10 @@ interactions: ParameterSetName: - --resource-group -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1dd24112-eb8e-45c7-9cab-d358d34c29b4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1a086a7a-55db-4445-a3b8-4b9a949cea4b?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1551,11 +2531,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1dd24112-eb8e-45c7-9cab-d358d34c29b4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1a086a7a-55db-4445-a3b8-4b9a949cea4b?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:09 GMT + - Thu, 18 Jun 2020 20:45:49 GMT pragma: - no-cache server: @@ -1569,7 +2549,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1587,24 +2567,24 @@ interactions: ParameterSetName: - --resource-group -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody","triggerType":"Pre","triggerOperation":"All","_rid":"eAxTAIq03rYBAAAAAAAAcA==","_self":"dbs/eAxTAA==/colls/eAxTAIq03rY=/triggers/eAxTAIq03rYBAAAAAAAAcA==/","_etag":"\"0a00b614-0000-0700-0000-5e5e7b2f0000\"","_ts":1583250223}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody","triggerType":"Pre","triggerOperation":"All","_rid":"H65YALtf--QBAAAAAAAAcA==","_self":"dbs/H65YAA==/colls/H65YALtf--Q=/triggers/H65YALtf--QBAAAAAAAAcA==/","_etag":"\"5f0079a3-0000-0700-0000-5eebd2620000\"","_ts":1592513122}}}' headers: cache-control: - no-store, no-cache content-length: - '696' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn/triggers/cliftevts5v6cx7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3/triggers/cli457b4vl2bjvg?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:10 GMT + - Thu, 18 Jun 2020 20:45:49 GMT pragma: - no-cache server: @@ -1618,7 +2598,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1636,26 +2616,26 @@ interactions: ParameterSetName: - -g -a -d -c -n -b --operation -t User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody","triggerType":"Pre","triggerOperation":"All","_rid":"eAxTAIq03rYBAAAAAAAAcA==","_self":"dbs/eAxTAA==/colls/eAxTAIq03rY=/triggers/eAxTAIq03rYBAAAAAAAAcA==/","_etag":"\"0a00b614-0000-0700-0000-5e5e7b2f0000\"","_ts":1583250223}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody","triggerType":"Pre","triggerOperation":"All","_rid":"H65YALtf--QBAAAAAAAAcA==","_self":"dbs/H65YAA==/colls/H65YALtf--Q=/triggers/H65YALtf--QBAAAAAAAAcA==/","_etag":"\"5f0079a3-0000-0700-0000-5eebd2620000\"","_ts":1592513122}}}' headers: cache-control: - no-store, no-cache content-length: - '696' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn/triggers/cliftevts5v6cx7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3/triggers/cli457b4vl2bjvg?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:11 GMT + - Thu, 18 Jun 2020 20:45:51 GMT pragma: - no-cache server: @@ -1669,7 +2649,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1692,30 +2672,30 @@ interactions: ParameterSetName: - -g -a -d -c -n -b --operation -t User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6077c88-8b34-4ccd-b54d-f5a0b22bd75c?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5485bb9-48c4-4331-be4f-8378ef2ea2e7?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn/triggers/cliftevts5v6cx7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3/triggers/cli457b4vl2bjvg?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:12 GMT + - Thu, 18 Jun 2020 20:45:52 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004/operationResults/c6077c88-8b34-4ccd-b54d-f5a0b22bd75c?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004/operationResults/a5485bb9-48c4-4331-be4f-8378ef2ea2e7?api-version=2020-04-01 pragma: - no-cache server: @@ -1725,9 +2705,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 202 message: Accepted @@ -1745,10 +2725,10 @@ interactions: ParameterSetName: - -g -a -d -c -n -b --operation -t User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6077c88-8b34-4ccd-b54d-f5a0b22bd75c?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5485bb9-48c4-4331-be4f-8378ef2ea2e7?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1758,11 +2738,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6077c88-8b34-4ccd-b54d-f5a0b22bd75c?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5485bb9-48c4-4331-be4f-8378ef2ea2e7?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:42 GMT + - Thu, 18 Jun 2020 20:46:23 GMT pragma: - no-cache server: @@ -1776,7 +2756,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1794,24 +2774,24 @@ interactions: ParameterSetName: - -g -a -d -c -n -b --operation -t User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","triggerType":"Pre","triggerOperation":"Delete","_rid":"eAxTAIq03rYBAAAAAAAAcA==","_self":"dbs/eAxTAA==/colls/eAxTAIq03rY=/triggers/eAxTAIq03rYBAAAAAAAAcA==/","_etag":"\"0a00da16-0000-0700-0000-5e5e7b500000\"","_ts":1583250256}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","triggerType":"Pre","triggerOperation":"Delete","_rid":"H65YALtf--QBAAAAAAAAcA==","_self":"dbs/H65YAA==/colls/H65YALtf--Q=/triggers/H65YALtf--QBAAAAAAAAcA==/","_etag":"\"5f005eab-0000-0700-0000-5eebd2850000\"","_ts":1592513157}}}' headers: cache-control: - no-store, no-cache content-length: - '700' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn/triggers/cliftevts5v6cx7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3/triggers/cli457b4vl2bjvg?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:43 GMT + - Thu, 18 Jun 2020 20:46:23 GMT pragma: - no-cache server: @@ -1825,7 +2805,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1843,26 +2823,26 @@ interactions: ParameterSetName: - -g -a -d -c -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","triggerType":"Pre","triggerOperation":"Delete","_rid":"eAxTAIq03rYBAAAAAAAAcA==","_self":"dbs/eAxTAA==/colls/eAxTAIq03rY=/triggers/eAxTAIq03rYBAAAAAAAAcA==/","_etag":"\"0a00da16-0000-0700-0000-5e5e7b500000\"","_ts":1583250256}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","triggerType":"Pre","triggerOperation":"Delete","_rid":"H65YALtf--QBAAAAAAAAcA==","_self":"dbs/H65YAA==/colls/H65YALtf--Q=/triggers/H65YALtf--QBAAAAAAAAcA==/","_etag":"\"5f005eab-0000-0700-0000-5eebd2850000\"","_ts":1592513157}}}' headers: cache-control: - no-store, no-cache content-length: - '700' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn/triggers/cliftevts5v6cx7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3/triggers/cli457b4vl2bjvg?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:43 GMT + - Thu, 18 Jun 2020 20:46:25 GMT pragma: - no-cache server: @@ -1876,7 +2856,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1894,26 +2874,26 @@ interactions: ParameterSetName: - -g -a -d -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","triggerType":"Pre","triggerOperation":"Delete","_rid":"eAxTAIq03rYBAAAAAAAAcA==","_self":"dbs/eAxTAA==/colls/eAxTAIq03rY=/triggers/eAxTAIq03rYBAAAAAAAAcA==/","_etag":"\"0a00da16-0000-0700-0000-5e5e7b500000\"","_ts":1583250256}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","triggerType":"Pre","triggerOperation":"Delete","_rid":"H65YALtf--QBAAAAAAAAcA==","_self":"dbs/H65YAA==/colls/H65YALtf--Q=/triggers/H65YALtf--QBAAAAAAAAcA==/","_etag":"\"5f005eab-0000-0700-0000-5eebd2850000\"","_ts":1592513157}}}]}' headers: cache-control: - no-store, no-cache content-length: - '712' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn/triggers?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3/triggers?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:45 GMT + - Thu, 18 Jun 2020 20:46:26 GMT pragma: - no-cache server: @@ -1927,7 +2907,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1947,30 +2927,30 @@ interactions: ParameterSetName: - -g -a -d -c -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/19cc3070-8185-453d-9123-f2abeeb84543?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57fe389c-3d86-4ace-a3eb-1eb69bf26703?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn/triggers/cliftevts5v6cx7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3/triggers/cli457b4vl2bjvg?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:46 GMT + - Thu, 18 Jun 2020 20:46:27 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004/operationResults/19cc3070-8185-453d-9123-f2abeeb84543?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers/cli000004/operationResults/57fe389c-3d86-4ace-a3eb-1eb69bf26703?api-version=2020-04-01 pragma: - no-cache server: @@ -1980,7 +2960,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -2000,10 +2980,10 @@ interactions: ParameterSetName: - -g -a -d -c -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/19cc3070-8185-453d-9123-f2abeeb84543?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57fe389c-3d86-4ace-a3eb-1eb69bf26703?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2013,11 +2993,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/19cc3070-8185-453d-9123-f2abeeb84543?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/57fe389c-3d86-4ace-a3eb-1eb69bf26703?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:45:16 GMT + - Thu, 18 Jun 2020 20:46:58 GMT pragma: - no-cache server: @@ -2031,7 +3011,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -2049,12 +3029,12 @@ interactions: ParameterSetName: - -g -a -d -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_trigger000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/triggers?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -2064,11 +3044,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_triggerejpq5tvn5i6ygza3zii434qrfga7ua6dqz7n3fnnwqtxni/providers/Microsoft.DocumentDB/databaseAccounts/cliyr246atryw4d/sqlDatabases/clibnrp3bpwxqfu/containers/clijfrhubjbl4kn/triggers?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_triggerbfjtl6griam6wdf2s46poevkw5jvghlwt7s5cy3mwbbvo3/providers/Microsoft.DocumentDB/databaseAccounts/clijggtpu7sc2vx/sqlDatabases/clizkcnltfx2qa4/containers/cli5zegxmpgskg3/triggers?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:45:18 GMT + - Thu, 18 Jun 2020 20:46:59 GMT pragma: - no-cache server: @@ -2082,7 +3062,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_user_defined_function.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_user_defined_function.yaml index 6f589914e87..26179c73e71 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_user_defined_function.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_sql_user_defined_function.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-resource/8.0.1 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_sql_user_defined_function000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001","name":"cli_test_cosmosdb_sql_user_defined_function000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-03-03T15:32:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001","name":"cli_test_cosmosdb_sql_user_defined_function000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:42:29Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 Mar 2020 15:32:43 GMT + - Thu, 18 Jun 2020 20:42:30 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005","name":"cli000005","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1409' + - '1527' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:32:47 GMT + - Thu, 18 Jun 2020 20:42:35 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/operationResults/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/operationResults/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,695 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:43:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:43:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:44:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:44:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:45:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:45:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:46:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:46:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:47:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:47:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:48:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:48:40 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:49:11 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:49:41 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,10 +812,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:33:18 GMT + - Thu, 18 Jun 2020 20:50:12 GMT pragma: - no-cache server: @@ -157,7 +843,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -175,10 +861,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:33:48 GMT + - Thu, 18 Jun 2020 20:50:42 GMT pragma: - no-cache server: @@ -206,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -224,10 +910,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:34:19 GMT + - Thu, 18 Jun 2020 20:51:12 GMT pragma: - no-cache server: @@ -255,7 +941,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -273,10 +959,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:34:49 GMT + - Thu, 18 Jun 2020 20:51:43 GMT pragma: - no-cache server: @@ -304,7 +990,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -322,10 +1008,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:35:19 GMT + - Thu, 18 Jun 2020 20:52:14 GMT pragma: - no-cache server: @@ -353,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -371,10 +1057,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:35:49 GMT + - Thu, 18 Jun 2020 20:52:44 GMT pragma: - no-cache server: @@ -402,7 +1088,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -420,10 +1106,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +1119,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:36:20 GMT + - Thu, 18 Jun 2020 20:53:14 GMT pragma: - no-cache server: @@ -451,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -469,10 +1155,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +1168,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:36:50 GMT + - Thu, 18 Jun 2020 20:53:45 GMT pragma: - no-cache server: @@ -500,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -518,10 +1204,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +1217,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:37:21 GMT + - Thu, 18 Jun 2020 20:54:15 GMT pragma: - no-cache server: @@ -549,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -567,10 +1253,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +1266,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:37:51 GMT + - Thu, 18 Jun 2020 20:54:46 GMT pragma: - no-cache server: @@ -598,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -616,10 +1302,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +1315,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:38:22 GMT + - Thu, 18 Jun 2020 20:55:16 GMT pragma: - no-cache server: @@ -647,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -665,10 +1351,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +1364,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:38:52 GMT + - Thu, 18 Jun 2020 20:55:47 GMT pragma: - no-cache server: @@ -696,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -714,10 +1400,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +1413,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:39:22 GMT + - Thu, 18 Jun 2020 20:56:18 GMT pragma: - no-cache server: @@ -745,7 +1431,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -763,10 +1449,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +1462,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:39:52 GMT + - Thu, 18 Jun 2020 20:56:48 GMT pragma: - no-cache server: @@ -794,7 +1480,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -812,10 +1498,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +1511,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:40:22 GMT + - Thu, 18 Jun 2020 20:57:18 GMT pragma: - no-cache server: @@ -843,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -861,10 +1547,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +1560,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:40:53 GMT + - Thu, 18 Jun 2020 20:57:49 GMT pragma: - no-cache server: @@ -892,7 +1578,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -910,10 +1596,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +1609,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:23 GMT + - Thu, 18 Jun 2020 20:58:19 GMT pragma: - no-cache server: @@ -941,7 +1627,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -959,10 +1645,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -972,11 +1658,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25dde734-8731-4c3a-91b8-20d3cdc7000b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/99ec425b-4cb8-400b-b8b9-9aae5fb13294?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:53 GMT + - Thu, 18 Jun 2020 20:58:50 GMT pragma: - no-cache server: @@ -990,7 +1676,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1008,29 +1694,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005","name":"cli000005","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:53 GMT + - Thu, 18 Jun 2020 20:58:50 GMT pragma: - no-cache server: @@ -1044,7 +1730,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1062,31 +1748,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005","name":"cli000005","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000005.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000005-westus","locationName":"West US","documentEndpoint":"https://cli000005-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000005-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1698' + - '1832' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:54 GMT + - Thu, 18 Jun 2020 20:58:50 GMT pragma: - no-cache server: @@ -1100,7 +1786,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1122,30 +1808,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/798cd429-bce7-4995-8edd-82e8b1eed70a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/787b7e53-a0e0-4faa-a141-0f8046560d1f?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:41:54 GMT + - Thu, 18 Jun 2020 20:58:52 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/operationResults/798cd429-bce7-4995-8edd-82e8b1eed70a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/operationResults/787b7e53-a0e0-4faa-a141-0f8046560d1f?api-version=2020-04-01 pragma: - no-cache server: @@ -1155,9 +1841,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 202 message: Accepted @@ -1175,10 +1861,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/798cd429-bce7-4995-8edd-82e8b1eed70a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/787b7e53-a0e0-4faa-a141-0f8046560d1f?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1188,11 +1874,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/798cd429-bce7-4995-8edd-82e8b1eed70a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/787b7e53-a0e0-4faa-a141-0f8046560d1f?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:25 GMT + - Thu, 18 Jun 2020 20:59:22 GMT pragma: - no-cache server: @@ -1206,7 +1892,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1224,24 +1910,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"8BAEAA==","_self":"dbs/8BAEAA==/","_etag":"\"00001a00-0000-0700-0000-5e5e7ac70000\"","_colls":"colls/","_users":"users/","_ts":1583250119}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"qPEJAA==","_self":"dbs/qPEJAA==/","_etag":"\"0000b505-0000-0700-0000-5eebd5900000\"","_colls":"colls/","_users":"users/","_ts":1592513936}}}' headers: cache-control: - no-store, no-cache content-length: - '526' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:25 GMT + - Thu, 18 Jun 2020 20:59:23 GMT pragma: - no-cache server: @@ -1255,7 +1941,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1280,30 +1966,30 @@ interactions: ParameterSetName: - -g -a -d -n -p User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bedb4ee3-9cb9-4505-9e1b-92e4f6ae0115?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/90a36307-ac52-4232-ab3e-c7f59cda6dae?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:28 GMT + - Thu, 18 Jun 2020 20:59:25 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/operationResults/bedb4ee3-9cb9-4505-9e1b-92e4f6ae0115?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/operationResults/90a36307-ac52-4232-ab3e-c7f59cda6dae?api-version=2020-04-01 pragma: - no-cache server: @@ -1313,9 +1999,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1333,10 +2019,10 @@ interactions: ParameterSetName: - -g -a -d -n -p User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bedb4ee3-9cb9-4505-9e1b-92e4f6ae0115?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/90a36307-ac52-4232-ab3e-c7f59cda6dae?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1346,11 +2032,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bedb4ee3-9cb9-4505-9e1b-92e4f6ae0115?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/90a36307-ac52-4232-ab3e-c7f59cda6dae?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:58 GMT + - Thu, 18 Jun 2020 20:59:56 GMT pragma: - no-cache server: @@ -1364,7 +2050,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1382,24 +2068,24 @@ interactions: ParameterSetName: - -g -a -d -n -p User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"8BAEAP336A4=","_ts":1583250152,"_self":"dbs/8BAEAA==/colls/8BAEAP336A4=/","_etag":"\"00001c00-0000-0700-0000-5e5e7ae80000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers","name":"cli000003","properties":{"resource":{"id":"cli000003","indexingPolicy":{"indexingMode":"consistent","automatic":true,"includedPaths":[{"path":"/*"}],"excludedPaths":[{"path":"/\"_etag\"/?"}]},"partitionKey":{"paths":["/thePartitionKey"],"kind":"Hash"},"uniqueKeyPolicy":{"uniqueKeys":[]},"conflictResolutionPolicy":{"mode":"LastWriterWins","conflictResolutionPath":"/_ts","conflictResolutionProcedure":""},"geospatialConfig":{"type":"Geography"},"_rid":"qPEJAO8NDuM=","_ts":1592513970,"_self":"dbs/qPEJAA==/colls/qPEJAO8NDuM=/","_etag":"\"0000b705-0000-0700-0000-5eebd5b20000\"","_docs":"docs/","_sprocs":"sprocs/","_triggers":"triggers/","_udfs":"udfs/","_conflicts":"conflicts/","statistics":[{"id":"0","sizeInKB":0,"documentCount":0,"partitionKeys":[]}]}}}' headers: cache-control: - no-store, no-cache content-length: - '1121' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:42:59 GMT + - Thu, 18 Jun 2020 20:59:57 GMT pragma: - no-cache server: @@ -1413,7 +2099,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1436,30 +2122,30 @@ interactions: ParameterSetName: - --resource-group -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb9f2e1-cb3b-4615-8f81-105eebf19fe4?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f85cb116-9812-40e9-9936-c8ccaf022d7b?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23/userDefinedFunctions/clinks64eiuwm6x?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k/userDefinedFunctions/cli4hbi5bdbu6vo?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:00 GMT + - Thu, 18 Jun 2020 20:59:58 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004/operationResults/1eb9f2e1-cb3b-4615-8f81-105eebf19fe4?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004/operationResults/f85cb116-9812-40e9-9936-c8ccaf022d7b?api-version=2020-04-01 pragma: - no-cache server: @@ -1469,7 +2155,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1489,10 +2175,10 @@ interactions: ParameterSetName: - --resource-group -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb9f2e1-cb3b-4615-8f81-105eebf19fe4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f85cb116-9812-40e9-9936-c8ccaf022d7b?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1502,11 +2188,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1eb9f2e1-cb3b-4615-8f81-105eebf19fe4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f85cb116-9812-40e9-9936-c8ccaf022d7b?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:31 GMT + - Thu, 18 Jun 2020 21:00:28 GMT pragma: - no-cache server: @@ -1520,7 +2206,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1538,24 +2224,24 @@ interactions: ParameterSetName: - --resource-group -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody","_rid":"8BAEAP336A4BAAAAAAAAYA==","_self":"dbs/8BAEAA==/colls/8BAEAP336A4=/udfs/8BAEAP336A4BAAAAAAAAYA==/","_etag":"\"0100d0d5-0000-0700-0000-5e5e7b090000\"","_ts":1583250185}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody","_rid":"qPEJAO8NDuMBAAAAAAAAYA==","_self":"dbs/qPEJAA==/colls/qPEJAO8NDuM=/udfs/qPEJAO8NDuMBAAAAAAAAYA==/","_etag":"\"9200a320-0000-0700-0000-5eebd5d30000\"","_ts":1592514003}}}' headers: cache-control: - no-store, no-cache content-length: - '671' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23/userDefinedFunctions/clinks64eiuwm6x?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k/userDefinedFunctions/cli4hbi5bdbu6vo?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:32 GMT + - Thu, 18 Jun 2020 21:00:29 GMT pragma: - no-cache server: @@ -1569,7 +2255,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1592,30 +2278,30 @@ interactions: ParameterSetName: - -g -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/797a50a1-6376-4394-bf52-db658a436734?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373c9a0a-057e-4194-adf2-68c028700e5c?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23/userDefinedFunctions/clinks64eiuwm6x?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k/userDefinedFunctions/cli4hbi5bdbu6vo?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:43:33 GMT + - Thu, 18 Jun 2020 21:00:30 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004/operationResults/797a50a1-6376-4394-bf52-db658a436734?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004/operationResults/373c9a0a-057e-4194-adf2-68c028700e5c?api-version=2020-04-01 pragma: - no-cache server: @@ -1625,9 +2311,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1645,10 +2331,10 @@ interactions: ParameterSetName: - -g -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/797a50a1-6376-4394-bf52-db658a436734?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373c9a0a-057e-4194-adf2-68c028700e5c?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1658,11 +2344,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/797a50a1-6376-4394-bf52-db658a436734?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/373c9a0a-057e-4194-adf2-68c028700e5c?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:04 GMT + - Thu, 18 Jun 2020 21:01:01 GMT pragma: - no-cache server: @@ -1676,7 +2362,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1694,24 +2380,24 @@ interactions: ParameterSetName: - -g -a -d -c -n -b User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"8BAEAP336A4BAAAAAAAAYA==","_self":"dbs/8BAEAA==/colls/8BAEAP336A4=/udfs/8BAEAP336A4BAAAAAAAAYA==/","_etag":"\"0100e9d5-0000-0700-0000-5e5e7b2a0000\"","_ts":1583250218}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"qPEJAO8NDuMBAAAAAAAAYA==","_self":"dbs/qPEJAA==/colls/qPEJAO8NDuM=/udfs/qPEJAO8NDuMBAAAAAAAAYA==/","_etag":"\"92001321-0000-0700-0000-5eebd5f30000\"","_ts":1592514035}}}' headers: cache-control: - no-store, no-cache content-length: - '672' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23/userDefinedFunctions/clinks64eiuwm6x?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k/userDefinedFunctions/cli4hbi5bdbu6vo?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:04 GMT + - Thu, 18 Jun 2020 21:01:01 GMT pragma: - no-cache server: @@ -1725,7 +2411,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1743,26 +2429,26 @@ interactions: ParameterSetName: - -g -a -d -c -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"8BAEAP336A4BAAAAAAAAYA==","_self":"dbs/8BAEAA==/colls/8BAEAP336A4=/udfs/8BAEAP336A4BAAAAAAAAYA==/","_etag":"\"0100e9d5-0000-0700-0000-5e5e7b2a0000\"","_ts":1583250218}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"qPEJAO8NDuMBAAAAAAAAYA==","_self":"dbs/qPEJAA==/colls/qPEJAO8NDuM=/udfs/qPEJAO8NDuMBAAAAAAAAYA==/","_etag":"\"92001321-0000-0700-0000-5eebd5f30000\"","_ts":1592514035}}}' headers: cache-control: - no-store, no-cache content-length: - '672' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23/userDefinedFunctions/clinks64eiuwm6x?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k/userDefinedFunctions/cli4hbi5bdbu6vo?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:06 GMT + - Thu, 18 Jun 2020 21:01:03 GMT pragma: - no-cache server: @@ -1776,7 +2462,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1794,26 +2480,26 @@ interactions: ParameterSetName: - -g -a -d -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"8BAEAP336A4BAAAAAAAAYA==","_self":"dbs/8BAEAA==/colls/8BAEAP336A4=/udfs/8BAEAP336A4BAAAAAAAAYA==/","_etag":"\"0100e9d5-0000-0700-0000-5e5e7b2a0000\"","_ts":1583250218}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004","type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions","name":"cli000004","properties":{"resource":{"id":"cli000004","body":"sampleBody2","_rid":"qPEJAO8NDuMBAAAAAAAAYA==","_self":"dbs/qPEJAA==/colls/qPEJAO8NDuM=/udfs/qPEJAO8NDuMBAAAAAAAAYA==/","_etag":"\"92001321-0000-0700-0000-5eebd5f30000\"","_ts":1592514035}}}]}' headers: cache-control: - no-store, no-cache content-length: - '684' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23/userDefinedFunctions?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k/userDefinedFunctions?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:07 GMT + - Thu, 18 Jun 2020 21:01:04 GMT pragma: - no-cache server: @@ -1827,7 +2513,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1847,30 +2533,30 @@ interactions: ParameterSetName: - -g -a -d -c -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d1fbca8-1dc5-4c51-9a81-6d3078fdf7bc?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f1dcd5a9-3e6c-496e-b942-99686603ddf2?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23/userDefinedFunctions/clinks64eiuwm6x?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k/userDefinedFunctions/cli4hbi5bdbu6vo?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:09 GMT + - Thu, 18 Jun 2020 21:01:05 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004/operationResults/9d1fbca8-1dc5-4c51-9a81-6d3078fdf7bc?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions/cli000004/operationResults/f1dcd5a9-3e6c-496e-b942-99686603ddf2?api-version=2020-04-01 pragma: - no-cache server: @@ -1880,9 +2566,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -1900,10 +2586,10 @@ interactions: ParameterSetName: - -g -a -d -c -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d1fbca8-1dc5-4c51-9a81-6d3078fdf7bc?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f1dcd5a9-3e6c-496e-b942-99686603ddf2?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1913,11 +2599,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d1fbca8-1dc5-4c51-9a81-6d3078fdf7bc?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f1dcd5a9-3e6c-496e-b942-99686603ddf2?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:38 GMT + - Thu, 18 Jun 2020 21:01:36 GMT pragma: - no-cache server: @@ -1931,7 +2617,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok @@ -1949,12 +2635,12 @@ interactions: ParameterSetName: - -g -a -d -c User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 - azure-mgmt-cosmosdb/0.12.0 Azure-SDK-For-Python AZURECLI/2.1.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_sql_user_defined_function000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000005/sqlDatabases/cli000002/containers/cli000003/userDefinedFunctions?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -1964,11 +2650,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionw4shkvu6zcq7ulrrzhhpahtzn2jmx3vb/providers/Microsoft.DocumentDB/databaseAccounts/cliylvlq3bsyqli/sqlDatabases/cliibf672jbql7b/containers/clirgufrvwdis23/userDefinedFunctions?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_sql_user_defined_functionx4kznoab4dtwzgm7scq3r7q26dzlzgd2/providers/Microsoft.DocumentDB/databaseAccounts/clicsokuuy5sixm/sqlDatabases/cliohuqimunb25t/containers/cli7r7u5mcmkg5k/userDefinedFunctions?api-version=2020-04-01 content-type: - application/json date: - - Tue, 03 Mar 2020 15:44:41 GMT + - Thu, 18 Jun 2020 21:01:38 GMT pragma: - no-cache server: @@ -1982,7 +2668,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.9.2 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_table.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_table.yaml index 68109150b92..6af7f29d60e 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_table.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_table.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001","name":"cli_test_cosmosdb_table000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-18T20:19:20Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001","name":"cli_test_cosmosdb_table000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:42:55Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 May 2020 20:19:22 GMT + - Thu, 18 Jun 2020 20:42:56 GMT expires: - '-1' pragma: @@ -47,7 +47,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}]}}' + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], + "apiProperties": {}}}' headers: Accept: - application/json @@ -58,42 +59,42 @@ interactions: Connection: - keep-alive Content-Length: - - '241' + - '262' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1526' + - '1573' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:27 GMT + - Thu, 18 Jun 2020 20:43:00 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 pragma: - no-cache server: @@ -109,7 +110,56 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:43:30 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -127,10 +177,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -140,11 +190,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:19:58 GMT + - Thu, 18 Jun 2020 20:44:00 GMT pragma: - no-cache server: @@ -176,10 +226,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -189,11 +239,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:28 GMT + - Thu, 18 Jun 2020 20:44:31 GMT pragma: - no-cache server: @@ -225,10 +275,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -238,11 +288,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:20:58 GMT + - Thu, 18 Jun 2020 20:45:02 GMT pragma: - no-cache server: @@ -274,10 +324,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -287,11 +337,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:29 GMT + - Thu, 18 Jun 2020 20:45:32 GMT pragma: - no-cache server: @@ -323,10 +373,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -336,11 +386,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:21:59 GMT + - Thu, 18 Jun 2020 20:46:02 GMT pragma: - no-cache server: @@ -372,10 +422,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -385,11 +435,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:29 GMT + - Thu, 18 Jun 2020 20:46:32 GMT pragma: - no-cache server: @@ -421,10 +471,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -434,11 +484,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:22:59 GMT + - Thu, 18 Jun 2020 20:47:03 GMT pragma: - no-cache server: @@ -470,10 +520,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -483,11 +533,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:23:29 GMT + - Thu, 18 Jun 2020 20:47:34 GMT pragma: - no-cache server: @@ -519,10 +569,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -532,11 +582,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:01 GMT + - Thu, 18 Jun 2020 20:48:04 GMT pragma: - no-cache server: @@ -568,10 +618,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -581,11 +631,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:24:31 GMT + - Thu, 18 Jun 2020 20:48:34 GMT pragma: - no-cache server: @@ -617,10 +667,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -630,11 +680,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:01 GMT + - Thu, 18 Jun 2020 20:49:04 GMT pragma: - no-cache server: @@ -666,10 +716,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -679,11 +729,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:25:31 GMT + - Thu, 18 Jun 2020 20:49:34 GMT pragma: - no-cache server: @@ -715,10 +765,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -728,11 +778,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:01 GMT + - Thu, 18 Jun 2020 20:50:04 GMT pragma: - no-cache server: @@ -764,10 +814,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -777,11 +827,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:26:32 GMT + - Thu, 18 Jun 2020 20:50:34 GMT pragma: - no-cache server: @@ -813,10 +863,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -826,11 +876,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:05 GMT + - Thu, 18 Jun 2020 20:51:05 GMT pragma: - no-cache server: @@ -862,10 +912,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -875,11 +925,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:27:35 GMT + - Thu, 18 Jun 2020 20:51:36 GMT pragma: - no-cache server: @@ -911,10 +961,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -924,11 +974,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:05 GMT + - Thu, 18 Jun 2020 20:52:06 GMT pragma: - no-cache server: @@ -960,10 +1010,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -973,11 +1023,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:28:36 GMT + - Thu, 18 Jun 2020 20:52:36 GMT pragma: - no-cache server: @@ -1009,10 +1059,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1022,11 +1072,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:06 GMT + - Thu, 18 Jun 2020 20:53:06 GMT pragma: - no-cache server: @@ -1058,10 +1108,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1071,11 +1121,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:29:36 GMT + - Thu, 18 Jun 2020 20:53:37 GMT pragma: - no-cache server: @@ -1107,10 +1157,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1120,11 +1170,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:06 GMT + - Thu, 18 Jun 2020 20:54:07 GMT pragma: - no-cache server: @@ -1156,10 +1206,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1169,11 +1219,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:30:36 GMT + - Thu, 18 Jun 2020 20:54:37 GMT pragma: - no-cache server: @@ -1205,10 +1255,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1218,11 +1268,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:08 GMT + - Thu, 18 Jun 2020 20:55:07 GMT pragma: - no-cache server: @@ -1254,10 +1304,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1267,11 +1317,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:31:38 GMT + - Thu, 18 Jun 2020 20:55:38 GMT pragma: - no-cache server: @@ -1303,10 +1353,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1316,11 +1366,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:08 GMT + - Thu, 18 Jun 2020 20:56:08 GMT pragma: - no-cache server: @@ -1352,10 +1402,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1365,11 +1415,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:32:38 GMT + - Thu, 18 Jun 2020 20:56:38 GMT pragma: - no-cache server: @@ -1401,10 +1451,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1414,11 +1464,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:09 GMT + - Thu, 18 Jun 2020 20:57:09 GMT pragma: - no-cache server: @@ -1450,10 +1500,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1463,11 +1513,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:33:39 GMT + - Thu, 18 Jun 2020 20:57:40 GMT pragma: - no-cache server: @@ -1499,10 +1549,10 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1512,11 +1562,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:09 GMT + - Thu, 18 Jun 2020 20:58:10 GMT pragma: - no-cache server: @@ -1548,10 +1598,59 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:58:40 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1561,11 +1660,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7d0ff305-0940-40b6-8478-e9d4715777d5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/20121411-1855-4cc6-b57f-8d7e11b9e0f2?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:39 GMT + - Thu, 18 Jun 2020 20:59:11 GMT pragma: - no-cache server: @@ -1597,30 +1696,30 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1901' + - '1948' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:39 GMT + - Thu, 18 Jun 2020 20:59:11 GMT pragma: - no-cache server: @@ -1652,32 +1751,32 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","tableEndpoint":"https://cli000003.table.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1901' + - '1948' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:40 GMT + - Thu, 18 Jun 2020 20:59:11 GMT pragma: - no-cache server: @@ -1709,27 +1808,27 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-04-01 response: body: string: '{"code":"NotFound","message":"Message: {\"code\":\"NotFound\",\"message\":\"Message: {\\\"Errors\\\":[\\\"Owner resource does not exist\\\"]}\\r\\nActivityId: - 001fd8c2-9947-11ea-837a-a08cfdd714a6, Request URI: /apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/021f4e55-6bdf-4712-9645-d614e9691ab3/partitions/254da3ac-6d75-4a24-81c3-42f62115daa8/replicas/132343075674986104s, - RequestStats: \\r\\nRequestStartTime: 2020-05-18T20:34:42.2662543Z, RequestEndTime: - 2020-05-18T20:34:42.2662543Z, Number of regions attempted:1\\r\\nResponseTime: - 2020-05-18T20:34:42.2662543Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.24:11000/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/021f4e55-6bdf-4712-9645-d614e9691ab3/partitions/254da3ac-6d75-4a24-81c3-42f62115daa8/replicas/132343075674986104s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + 8ff25215-b1a6-11ea-be5a-b46bfc3d8f4d, Request URI: /apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/9d164419-00aa-488f-907a-f0cba85cf15f/partitions/cd422f0c-a9aa-4350-b6c7-0c63e8499142/replicas/132369855056307502s, + RequestStats: \\r\\nRequestStartTime: 2020-06-18T20:59:13.7644542Z, RequestEndTime: + 2020-06-18T20:59:13.7644542Z, Number of regions attempted:1\\r\\nResponseTime: + 2020-06-18T20:59:13.7644542Z, StoreResult: StorePhysicalAddress: rntbd://10.0.0.26:11300/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/9d164419-00aa-488f-907a-f0cba85cf15f/partitions/cd422f0c-a9aa-4350-b6c7-0c63e8499142/replicas/132369855056307502s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, - OperationType: Read\\r\\nResponseTime: 2020-05-18T20:34:42.2662543Z, StoreResult: - StorePhysicalAddress: rntbd://10.0.0.17:11300/apps/dfa86e4f-e36f-4777-bf04-10deb7ba35f5/services/021f4e55-6bdf-4712-9645-d614e9691ab3/partitions/254da3ac-6d75-4a24-81c3-42f62115daa8/replicas/132343075674986105s, - LSN: 4, GlobalCommittedLsn: 4, PartitionKeyRangeId: , IsValid: True, StatusCode: - 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#4, + OperationType: Read\\r\\nResponseTime: 2020-06-18T20:59:13.7644542Z, StoreResult: + StorePhysicalAddress: rntbd://10.0.0.27:11300/apps/06af805e-8590-4705-9817-859c9fa7bdc4/services/9d164419-00aa-488f-907a-f0cba85cf15f/partitions/cd422f0c-a9aa-4350-b6c7-0c63e8499142/replicas/132369855056307500s, + LSN: 5, GlobalCommittedLsn: 5, PartitionKeyRangeId: , IsValid: True, StatusCode: + 404, SubStatusCode: 1003, RequestCharge: 1, ItemLSN: -1, SessionToken: -1#5, UsingLocalLSN: False, TransportException: null, ResourceType: Collection, OperationType: Read\\r\\n, SDK: Microsoft.Azure.Documents.Common/2.11.0\"}, Request URI: /dbs/TablesDB/colls/cli000002, RequestStats: , SDK: Microsoft.Azure.Documents.Common/2.11.0"}' @@ -1739,11 +1838,11 @@ interactions: content-length: - '1742' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7/tables/cliwniscmisze3q?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz/tables/clibq36gwaipzj5?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:42 GMT + - Thu, 18 Jun 2020 20:59:12 GMT pragma: - no-cache server: @@ -1775,30 +1874,30 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fa113091-b150-4237-b03b-c9c0ba2d4e4a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3644631-80c2-4204-9503-8c8b94c36518?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7/tables/cliwniscmisze3q?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz/tables/clibq36gwaipzj5?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:34:43 GMT + - Thu, 18 Jun 2020 20:59:14 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/fa113091-b150-4237-b03b-c9c0ba2d4e4a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/e3644631-80c2-4204-9503-8c8b94c36518?api-version=2020-04-01 pragma: - no-cache server: @@ -1810,7 +1909,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -1828,10 +1927,10 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fa113091-b150-4237-b03b-c9c0ba2d4e4a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3644631-80c2-4204-9503-8c8b94c36518?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1841,11 +1940,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fa113091-b150-4237-b03b-c9c0ba2d4e4a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3644631-80c2-4204-9503-8c8b94c36518?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:13 GMT + - Thu, 18 Jun 2020 20:59:46 GMT pragma: - no-cache server: @@ -1877,24 +1976,24 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"0CMNAP5vd1w=","_etag":"\"00000000-0000-0000-2d53-c6130c0701d6\"","_ts":1589834088}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XXQwAIjwql8=","_etag":"\"00000000-0000-0000-45b3-56ba7c0701d6\"","_ts":1592513961}}}' headers: cache-control: - no-store, no-cache content-length: - '458' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7/tables/cliwniscmisze3q?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz/tables/clibq36gwaipzj5?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:14 GMT + - Thu, 18 Jun 2020 20:59:46 GMT pragma: - no-cache server: @@ -1926,26 +2025,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"0CMNAP5vd1w=","_etag":"\"00000000-0000-0000-2d53-c6130c0701d6\"","_ts":1589834088}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XXQwAIjwql8=","_etag":"\"00000000-0000-0000-45b3-56ba7c0701d6\"","_ts":1592513961}}}' headers: cache-control: - no-store, no-cache content-length: - '458' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7/tables/cliwniscmisze3q?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz/tables/clibq36gwaipzj5?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:16 GMT + - Thu, 18 Jun 2020 20:59:48 GMT pragma: - no-cache server: @@ -1977,26 +2076,26 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"0CMNAP5vd1w=","_etag":"\"00000000-0000-0000-2d53-c6130c0701d6\"","_ts":1589834088}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XXQwAIjwql8=","_etag":"\"00000000-0000-0000-45b3-56ba7c0701d6\"","_ts":1592513961}}}]}' headers: cache-control: - no-store, no-cache content-length: - '470' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7/tables?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz/tables?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:17 GMT + - Thu, 18 Jun 2020 20:59:50 GMT pragma: - no-cache server: @@ -2028,26 +2127,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"0CMNAP5vd1w=","_etag":"\"00000000-0000-0000-2d53-c6130c0701d6\"","_ts":1589834088}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000002","properties":{"resource":{"id":"cli000002","_rid":"XXQwAIjwql8=","_etag":"\"00000000-0000-0000-45b3-56ba7c0701d6\"","_ts":1592513961}}}' headers: cache-control: - no-store, no-cache content-length: - '458' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7/tables/cliwniscmisze3q?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz/tables/clibq36gwaipzj5?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:19 GMT + - Thu, 18 Jun 2020 20:59:51 GMT pragma: - no-cache server: @@ -2081,30 +2180,30 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/73b59fe8-4ece-431f-8d61-709eb7eab522?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/312eb20b-7bac-4d18-bf11-175e97d2d166?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7/tables/cliwniscmisze3q?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz/tables/clibq36gwaipzj5?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:20 GMT + - Thu, 18 Jun 2020 20:59:52 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/73b59fe8-4ece-431f-8d61-709eb7eab522?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables/cli000002/operationResults/312eb20b-7bac-4d18-bf11-175e97d2d166?api-version=2020-04-01 pragma: - no-cache server: @@ -2134,10 +2233,10 @@ interactions: ParameterSetName: - -g -a -n --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/73b59fe8-4ece-431f-8d61-709eb7eab522?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/312eb20b-7bac-4d18-bf11-175e97d2d166?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2147,11 +2246,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/73b59fe8-4ece-431f-8d61-709eb7eab522?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/312eb20b-7bac-4d18-bf11-175e97d2d166?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:51 GMT + - Thu, 18 Jun 2020 21:00:23 GMT pragma: - no-cache server: @@ -2183,12 +2282,12 @@ interactions: ParameterSetName: - -g -a User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.14.0 Azure-SDK-For-Python AZURECLI/2.6.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/tables?api-version=2020-04-01 response: body: string: '{"value":[]}' @@ -2198,11 +2297,11 @@ interactions: content-length: - '12' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_tableqraex4nygmlhqyqamuloyc27vxtldbhfmu7i2huecby4lfmkqasu/providers/Microsoft.DocumentDB/databaseAccounts/clihiv4y3ngoiw7/tables?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_tablelvfsogil4d7xvkmig2hxfwi4m3eghvhmw7edvrjhcs3o3hwuf5nv/providers/Microsoft.DocumentDB/databaseAccounts/clipfnznadvm2zz/tables?api-version=2020-04-01 content-type: - application/json date: - - Mon, 18 May 2020 20:35:52 GMT + - Thu, 18 Jun 2020 21:00:25 GMT pragma: - no-cache server: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_table_resource_throughput.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_table_resource_throughput.yaml index eca5126b0a0..bd46f87e76e 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_table_resource_throughput.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_cosmosdb_table_resource_throughput.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_table_resource_throughput000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001","name":"cli_test_cosmosdb_table_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:12:10Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001","name":"cli_test_cosmosdb_table_resource_throughput000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:38:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:12:10 GMT + - Thu, 18 Jun 2020 20:38:38 GMT expires: - '-1' pragma: @@ -47,7 +47,8 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}]}}' + "databaseAccountOfferType": "Standard", "capabilities": [{"name": "EnableTable"}], + "apiProperties": {}}}' headers: Accept: - application/json @@ -58,42 +59,42 @@ interactions: Connection: - keep-alive Content-Length: - - '241' + - '262' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1455' + - '1573' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_table_resource_throughputp3pb4mgqfqehqidezejnpsnvqt4acddw/providers/Microsoft.DocumentDB/databaseAccounts/clihk2a7qao7vxg?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_table_resource_throughputfyleq74cntf2zmn3egpbpus4cgcfodyw/providers/Microsoft.DocumentDB/databaseAccounts/clink475utz7mbl?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:12:15 GMT + - Thu, 18 Jun 2020 20:38:44 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 pragma: - no-cache server: @@ -107,9 +108,646 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:14 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:39:44 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:40:15 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:40:45 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:41:15 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:41:46 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:42:16 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:42:47 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:43:17 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:43:47 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:44:18 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:44:48 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:45:19 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -127,24 +765,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:12:45 GMT + - Thu, 18 Jun 2020 20:45:49 GMT pragma: - no-cache server: @@ -158,7 +796,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -176,24 +814,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:15 GMT + - Thu, 18 Jun 2020 20:46:19 GMT pragma: - no-cache server: @@ -207,7 +845,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -225,24 +863,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:46 GMT + - Thu, 18 Jun 2020 20:46:50 GMT pragma: - no-cache server: @@ -256,7 +894,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -274,24 +912,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:14:16 GMT + - Thu, 18 Jun 2020 20:47:21 GMT pragma: - no-cache server: @@ -305,7 +943,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -323,24 +961,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:14:46 GMT + - Thu, 18 Jun 2020 20:47:51 GMT pragma: - no-cache server: @@ -354,7 +992,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -372,24 +1010,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:15:17 GMT + - Thu, 18 Jun 2020 20:48:22 GMT pragma: - no-cache server: @@ -403,7 +1041,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -421,24 +1059,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:15:47 GMT + - Thu, 18 Jun 2020 20:48:52 GMT pragma: - no-cache server: @@ -452,7 +1090,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -470,24 +1108,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:16:18 GMT + - Thu, 18 Jun 2020 20:49:23 GMT pragma: - no-cache server: @@ -501,7 +1139,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -519,24 +1157,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:16:48 GMT + - Thu, 18 Jun 2020 20:49:53 GMT pragma: - no-cache server: @@ -550,7 +1188,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -568,24 +1206,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:18 GMT + - Thu, 18 Jun 2020 20:50:23 GMT pragma: - no-cache server: @@ -599,7 +1237,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -617,24 +1255,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:49 GMT + - Thu, 18 Jun 2020 20:50:53 GMT pragma: - no-cache server: @@ -648,7 +1286,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -666,24 +1304,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:18 GMT + - Thu, 18 Jun 2020 20:51:23 GMT pragma: - no-cache server: @@ -697,7 +1335,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -715,24 +1353,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:49 GMT + - Thu, 18 Jun 2020 20:51:54 GMT pragma: - no-cache server: @@ -746,7 +1384,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -764,24 +1402,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:19 GMT + - Thu, 18 Jun 2020 20:52:25 GMT pragma: - no-cache server: @@ -795,7 +1433,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -813,24 +1451,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:49 GMT + - Thu, 18 Jun 2020 20:52:54 GMT pragma: - no-cache server: @@ -844,7 +1482,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -862,24 +1500,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:20:20 GMT + - Thu, 18 Jun 2020 20:53:25 GMT pragma: - no-cache server: @@ -893,7 +1531,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -911,24 +1549,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:20:50 GMT + - Thu, 18 Jun 2020 20:53:56 GMT pragma: - no-cache server: @@ -942,7 +1580,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -960,24 +1598,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ac1b1cf5-da2c-4643-8cf9-2a4adb90984a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb58db0-0834-401e-9379-2d850d474850?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:21 GMT + - Thu, 18 Jun 2020 20:54:26 GMT pragma: - no-cache server: @@ -991,7 +1629,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1009,30 +1647,30 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","tableEndpoint":"https://cli000002.table.cosmos.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","tableEndpoint":"https://cli000002.table.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1814' + - '1948' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_table_resource_throughputp3pb4mgqfqehqidezejnpsnvqt4acddw/providers/Microsoft.DocumentDB/databaseAccounts/clihk2a7qao7vxg?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_table_resource_throughputfyleq74cntf2zmn3egpbpus4cgcfodyw/providers/Microsoft.DocumentDB/databaseAccounts/clink475utz7mbl?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:21 GMT + - Thu, 18 Jun 2020 20:54:26 GMT pragma: - no-cache server: @@ -1046,7 +1684,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1064,32 +1702,32 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","tableEndpoint":"https://cli000002.table.cosmos.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, - Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","tableEndpoint":"https://cli000002.table.cosmos.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Table, + Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"BoundedStaleness","maxIntervalInSeconds":86400,"maxStalenessPrefix":1000000},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableTable"}],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1814' + - '1948' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_table_resource_throughputp3pb4mgqfqehqidezejnpsnvqt4acddw/providers/Microsoft.DocumentDB/databaseAccounts/clihk2a7qao7vxg?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_table_resource_throughputfyleq74cntf2zmn3egpbpus4cgcfodyw/providers/Microsoft.DocumentDB/databaseAccounts/clink475utz7mbl?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:21 GMT + - Thu, 18 Jun 2020 20:54:26 GMT pragma: - no-cache server: @@ -1103,13 +1741,13 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok - request: - body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"Throughput": - "1000"}}}' + body: '{"properties": {"resource": {"id": "cli000003"}, "options": {"throughput": + 1000}}}' headers: Accept: - application/json @@ -1120,36 +1758,36 @@ interactions: Connection: - keep-alive Content-Length: - - '90' + - '88' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/69e712fd-d0ae-4eb5-b2cd-431bb655263a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45e34390-1dc0-4a6c-8fc3-038f23d21851?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_table_resource_throughputp3pb4mgqfqehqidezejnpsnvqt4acddw/providers/Microsoft.DocumentDB/databaseAccounts/clihk2a7qao7vxg/tables/cli25zekjkb2hux?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_table_resource_throughputfyleq74cntf2zmn3egpbpus4cgcfodyw/providers/Microsoft.DocumentDB/databaseAccounts/clink475utz7mbl/tables/clinviho74w2s3v?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:22 GMT + - Thu, 18 Jun 2020 20:54:28 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/operationResults/69e712fd-d0ae-4eb5-b2cd-431bb655263a?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/operationResults/45e34390-1dc0-4a6c-8fc3-038f23d21851?api-version=2020-04-01 pragma: - no-cache server: @@ -1159,9 +1797,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 202 message: Accepted @@ -1179,24 +1817,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/69e712fd-d0ae-4eb5-b2cd-431bb655263a?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45e34390-1dc0-4a6c-8fc3-038f23d21851?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/69e712fd-d0ae-4eb5-b2cd-431bb655263a?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/45e34390-1dc0-4a6c-8fc3-038f23d21851?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:53 GMT + - Thu, 18 Jun 2020 20:54:59 GMT pragma: - no-cache server: @@ -1210,7 +1848,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1228,24 +1866,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"iDR7AM5HwNg=","_etag":"\"00000000-0000-0000-afc1-4f041c0701d5\"","_ts":1576027286}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003","type":"Microsoft.DocumentDB/databaseAccounts/tables","name":"cli000003","properties":{"resource":{"id":"cli000003","_rid":"378LANqJNd4=","_etag":"\"00000000-0000-0000-45b2-ac4f5c0701d6\"","_ts":1592513675}}}' headers: cache-control: - no-store, no-cache content-length: - '458' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_table_resource_throughputp3pb4mgqfqehqidezejnpsnvqt4acddw/providers/Microsoft.DocumentDB/databaseAccounts/clihk2a7qao7vxg/tables/cli25zekjkb2hux?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_table_resource_throughputfyleq74cntf2zmn3egpbpus4cgcfodyw/providers/Microsoft.DocumentDB/databaseAccounts/clink475utz7mbl/tables/clinviho74w2s3v?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:54 GMT + - Thu, 18 Jun 2020 20:55:00 GMT pragma: - no-cache server: @@ -1259,7 +1897,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1277,26 +1915,26 @@ interactions: ParameterSetName: - -g -a -n User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings","name":"RCdG","properties":{"resource":{"throughput":1000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings","name":"difg","properties":{"resource":{"throughput":1000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '449' + - '424' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_table_resource_throughputp3pb4mgqfqehqidezejnpsnvqt4acddw/providers/Microsoft.DocumentDB/databaseAccounts/clihk2a7qao7vxg/tables/cli25zekjkb2hux/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_table_resource_throughputfyleq74cntf2zmn3egpbpus4cgcfodyw/providers/Microsoft.DocumentDB/databaseAccounts/clink475utz7mbl/tables/clinviho74w2s3v/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:55 GMT + - Thu, 18 Jun 2020 20:55:01 GMT pragma: - no-cache server: @@ -1310,7 +1948,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1332,30 +1970,30 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d0c773e4-bbfd-4685-aa92-5b3f1107ba0e?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/60528411-ed80-4f11-875e-11940abb4509?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_table_resource_throughputp3pb4mgqfqehqidezejnpsnvqt4acddw/providers/Microsoft.DocumentDB/databaseAccounts/clihk2a7qao7vxg/tables/cli25zekjkb2hux/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_table_resource_throughputfyleq74cntf2zmn3egpbpus4cgcfodyw/providers/Microsoft.DocumentDB/databaseAccounts/clink475utz7mbl/tables/clinviho74w2s3v/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:57 GMT + - Thu, 18 Jun 2020 20:55:04 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default/operationResults/d0c773e4-bbfd-4685-aa92-5b3f1107ba0e?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default/operationResults/60528411-ed80-4f11-875e-11940abb4509?api-version=2020-04-01 pragma: - no-cache server: @@ -1365,9 +2003,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -1385,24 +2023,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d0c773e4-bbfd-4685-aa92-5b3f1107ba0e?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/60528411-ed80-4f11-875e-11940abb4509?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d0c773e4-bbfd-4685-aa92-5b3f1107ba0e?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/60528411-ed80-4f11-875e-11940abb4509?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:27 GMT + - Thu, 18 Jun 2020 20:55:34 GMT pragma: - no-cache server: @@ -1416,7 +2054,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1434,24 +2072,24 @@ interactions: ParameterSetName: - -g -a -n --throughput User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings","name":"RCdG","properties":{"resource":{"throughput":2000,"minimumThroughput":"400","offerReplacePending":""}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_table_resource_throughput000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/tables/cli000003/throughputSettings/default","type":"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings","name":"difg","properties":{"resource":{"throughput":2000,"minimumThroughput":"400"}}}' headers: cache-control: - no-store, no-cache content-length: - - '449' + - '424' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_table_resource_throughputp3pb4mgqfqehqidezejnpsnvqt4acddw/providers/Microsoft.DocumentDB/databaseAccounts/clihk2a7qao7vxg/tables/cli25zekjkb2hux/throughputSettings/default?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_table_resource_throughputfyleq74cntf2zmn3egpbpus4cgcfodyw/providers/Microsoft.DocumentDB/databaseAccounts/clink475utz7mbl/tables/clinviho74w2s3v/throughputSettings/default?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:28 GMT + - Thu, 18 Jun 2020 20:55:35 GMT pragma: - no-cache server: @@ -1465,7 +2103,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_create_database_account.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_create_database_account.yaml index 97e8c3614bc..03043847925 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_create_database_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_create_database_account.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-04-22T22:41:56Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:44:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 22 Apr 2020 22:41:57 GMT + - Thu, 18 Jun 2020 20:44:42 GMT expires: - '-1' pragma: @@ -49,7 +49,7 @@ interactions: {"defaultConsistencyLevel": "ConsistentPrefix", "maxStalenessPrefix": 100, "maxIntervalInSeconds": 5}, "locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": "Standard", "enableAutomaticFailover": - true}}' + true, "apiProperties": {}}}' headers: Accept: - application/json @@ -60,41 +60,41 @@ interactions: Connection: - keep-alive Content-Length: - - '355' + - '376' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1627' + - '1685' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:41:59 GMT + - Thu, 18 Jun 2020 20:44:48 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 pragma: - no-cache server: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -128,10 +128,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -141,11 +141,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:42:30 GMT + - Thu, 18 Jun 2020 20:45:18 GMT pragma: - no-cache server: @@ -159,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -177,10 +177,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -190,11 +190,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:43:00 GMT + - Thu, 18 Jun 2020 20:45:49 GMT pragma: - no-cache server: @@ -208,7 +208,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -226,10 +226,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -239,11 +239,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:43:30 GMT + - Thu, 18 Jun 2020 20:46:20 GMT pragma: - no-cache server: @@ -257,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -275,10 +275,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -288,11 +288,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:44:02 GMT + - Thu, 18 Jun 2020 20:46:50 GMT pragma: - no-cache server: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -324,10 +324,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -337,11 +337,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:44:32 GMT + - Thu, 18 Jun 2020 20:47:20 GMT pragma: - no-cache server: @@ -355,7 +355,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -373,10 +373,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -386,11 +386,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:45:02 GMT + - Thu, 18 Jun 2020 20:47:50 GMT pragma: - no-cache server: @@ -404,7 +404,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -422,10 +422,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -435,11 +435,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:45:32 GMT + - Thu, 18 Jun 2020 20:48:20 GMT pragma: - no-cache server: @@ -453,7 +453,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -471,10 +471,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -484,11 +484,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:46:03 GMT + - Thu, 18 Jun 2020 20:48:51 GMT pragma: - no-cache server: @@ -502,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -520,10 +520,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -533,11 +533,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:46:33 GMT + - Thu, 18 Jun 2020 20:49:20 GMT pragma: - no-cache server: @@ -551,7 +551,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -569,10 +569,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -582,11 +582,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:47:03 GMT + - Thu, 18 Jun 2020 20:49:50 GMT pragma: - no-cache server: @@ -600,7 +600,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -618,10 +618,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -631,11 +631,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:47:33 GMT + - Thu, 18 Jun 2020 20:50:20 GMT pragma: - no-cache server: @@ -649,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -667,10 +667,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -680,11 +680,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:48:04 GMT + - Thu, 18 Jun 2020 20:50:51 GMT pragma: - no-cache server: @@ -698,7 +698,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -716,10 +716,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -729,11 +729,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:48:34 GMT + - Thu, 18 Jun 2020 20:51:21 GMT pragma: - no-cache server: @@ -747,7 +747,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -765,10 +765,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -778,11 +778,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:49:04 GMT + - Thu, 18 Jun 2020 20:51:52 GMT pragma: - no-cache server: @@ -796,7 +796,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -814,10 +814,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -827,11 +827,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:49:35 GMT + - Thu, 18 Jun 2020 20:52:22 GMT pragma: - no-cache server: @@ -845,7 +845,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -863,10 +863,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -876,11 +876,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:50:05 GMT + - Thu, 18 Jun 2020 20:52:52 GMT pragma: - no-cache server: @@ -894,7 +894,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -912,10 +912,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -925,11 +925,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:50:35 GMT + - Thu, 18 Jun 2020 20:53:22 GMT pragma: - no-cache server: @@ -943,7 +943,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -961,10 +961,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -974,11 +974,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:51:06 GMT + - Thu, 18 Jun 2020 20:53:53 GMT pragma: - no-cache server: @@ -992,7 +992,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1010,10 +1010,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1023,11 +1023,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:51:36 GMT + - Thu, 18 Jun 2020 20:54:23 GMT pragma: - no-cache server: @@ -1041,7 +1041,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1059,10 +1059,10 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1072,11 +1072,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:52:06 GMT + - Thu, 18 Jun 2020 20:54:53 GMT pragma: - no-cache server: @@ -1090,7 +1090,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1108,10 +1108,451 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:55:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:55:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:56:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:56:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:57:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:57:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:58:24 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:58:54 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:59:25 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1121,11 +1562,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/6bafce5d-1d95-440c-8413-8dec37b72453?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b10fca1b-cb3f-4d24-84f2-74855a4caa0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:52:36 GMT + - Thu, 18 Jun 2020 20:59:55 GMT pragma: - no-cache server: @@ -1139,7 +1580,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1157,29 +1598,29 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2032' + - '2090' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:52:36 GMT + - Thu, 18 Jun 2020 20:59:56 GMT pragma: - no-cache server: @@ -1193,7 +1634,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1211,31 +1652,31 @@ interactions: ParameterSetName: - -n -g --enable-automatic-failover --default-consistency-level User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2032' + - '2090' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:52:36 GMT + - Thu, 18 Jun 2020 20:59:57 GMT pragma: - no-cache server: @@ -1249,7 +1690,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1267,31 +1708,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2032' + - '2090' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:52:38 GMT + - Thu, 18 Jun 2020 20:59:57 GMT pragma: - no-cache server: @@ -1305,7 +1746,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1324,31 +1765,31 @@ interactions: - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2032' + - '2090' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:52:38 GMT + - Thu, 18 Jun 2020 20:59:59 GMT pragma: - no-cache server: @@ -1362,7 +1803,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1387,35 +1828,35 @@ interactions: - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":true,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '2028' + - '2086' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:52:43 GMT + - Thu, 18 Jun 2020 21:00:04 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 pragma: - no-cache server: @@ -1429,7 +1870,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1450,10 +1891,110 @@ interactions: - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:00:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access + --enable-public-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:01:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access + --enable-public-network + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1463,11 +2004,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:53:13 GMT + - Thu, 18 Jun 2020 21:01:35 GMT pragma: - no-cache server: @@ -1481,7 +2022,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1500,10 +2041,10 @@ interactions: - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1513,11 +2054,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:53:43 GMT + - Thu, 18 Jun 2020 21:02:05 GMT pragma: - no-cache server: @@ -1531,7 +2072,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1550,10 +2091,10 @@ interactions: - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1563,11 +2104,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:54:13 GMT + - Thu, 18 Jun 2020 21:02:36 GMT pragma: - no-cache server: @@ -1581,7 +2122,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1600,10 +2141,10 @@ interactions: - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1613,11 +2154,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/461dcc81-c33e-4c8c-b842-fdc41c3fff94?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9ee0b403-be0a-487c-b2d5-74a1b331816b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:54:44 GMT + - Thu, 18 Jun 2020 21:03:06 GMT pragma: - no-cache server: @@ -1631,7 +2172,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1650,29 +2191,29 @@ interactions: - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2024' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:54:44 GMT + - Thu, 18 Jun 2020 21:03:06 GMT pragma: - no-cache server: @@ -1686,7 +2227,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1705,31 +2246,31 @@ interactions: - -n -g --enable-automatic-failover --default-consistency-level --disable-key-based-metadata-write-access --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2024' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:54:45 GMT + - Thu, 18 Jun 2020 21:03:07 GMT pragma: - no-cache server: @@ -1743,7 +2284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1761,31 +2302,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2024' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:54:46 GMT + - Thu, 18 Jun 2020 21:03:08 GMT pragma: - no-cache server: @@ -1799,7 +2340,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1817,31 +2358,31 @@ interactions: ParameterSetName: - -n -g --tags --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2024' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:54:45 GMT + - Thu, 18 Jun 2020 21:03:09 GMT pragma: - no-cache server: @@ -1855,7 +2396,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1878,35 +2419,35 @@ interactions: ParameterSetName: - -n -g --tags --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Disabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '2020' + - '2078' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:54:49 GMT + - Thu, 18 Jun 2020 21:03:15 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 pragma: - no-cache server: @@ -1920,7 +2461,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1940,10 +2481,10 @@ interactions: ParameterSetName: - -n -g --tags --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1953,11 +2494,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:55:20 GMT + - Thu, 18 Jun 2020 21:03:45 GMT pragma: - no-cache server: @@ -1971,7 +2512,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1989,10 +2530,10 @@ interactions: ParameterSetName: - -n -g --tags --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2002,11 +2543,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:55:51 GMT + - Thu, 18 Jun 2020 21:04:16 GMT pragma: - no-cache server: @@ -2020,7 +2561,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2038,10 +2579,10 @@ interactions: ParameterSetName: - -n -g --tags --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -2051,11 +2592,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:56:21 GMT + - Thu, 18 Jun 2020 21:04:46 GMT pragma: - no-cache server: @@ -2069,7 +2610,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2087,10 +2628,10 @@ interactions: ParameterSetName: - -n -g --tags --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2100,11 +2641,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c6fc2036-dffb-41d0-a1e0-75e495246620?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40bada59-82dd-4a03-9040-b07b171f253e?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:56:51 GMT + - Thu, 18 Jun 2020 21:05:16 GMT pragma: - no-cache server: @@ -2118,7 +2659,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2136,29 +2677,29 @@ interactions: ParameterSetName: - -n -g --tags --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{"testKey":"testValue"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{"testKey":"testValue"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2044' + - '2102' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:56:51 GMT + - Thu, 18 Jun 2020 21:05:16 GMT pragma: - no-cache server: @@ -2172,7 +2713,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2190,31 +2731,31 @@ interactions: ParameterSetName: - -n -g --tags --enable-public-network User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{"testKey":"testValue"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{"testKey":"testValue"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2044' + - '2102' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:56:52 GMT + - Thu, 18 Jun 2020 21:05:16 GMT pragma: - no-cache server: @@ -2228,7 +2769,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2246,31 +2787,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{"testKey":"testValue"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{"testKey":"testValue"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":true,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2044' + - '2102' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accounthqrqkux7nwapdwwbzezqo4gyyx4hlhjhx2rggufltry662sbqf/providers/Microsoft.DocumentDB/databaseAccounts/cli4i3bsidtxsuwvy5fitvl3if4dk2g3ytmw267w?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account7dhac5xf5mlxsy3vbz2ctbucyv66vhj7cu6t32vdnc2toczelt/providers/Microsoft.DocumentDB/databaseAccounts/cliabgemdgqsbmf37t7dqc5oge2srr222umbi7ys?api-version=2020-04-01 content-type: - application/json date: - - Wed, 22 Apr 2020 22:56:53 GMT + - Thu, 18 Jun 2020 21:05:17 GMT pragma: - no-cache server: @@ -2284,7 +2825,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_delete_database_account.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_delete_database_account.yaml index 32b23ae31af..1cf95be51de 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_delete_database_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_delete_database_account.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-resource/9.0.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-04-21T22:26:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:39:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 21 Apr 2020 22:26:15 GMT + - Thu, 18 Jun 2020 20:39:23 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1619' + - '1677' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accountysvjdkjio6bgjqlnkufxxx5khnqmdzzronhpim4zcjowu432yy/providers/Microsoft.DocumentDB/databaseAccounts/cliobvtcjaqxpsror3yms32pv4nm7gxgrwerpgzf?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountcejjv5woa35x64djuh2vtevipjubqixejn7yk6g5g32z7sccxy/providers/Microsoft.DocumentDB/databaseAccounts/climkkezcn4avgydwyuvtpjgj6znyym6puxbyi4z?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:26:17 GMT + - Thu, 18 Jun 2020 20:39:28 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: Ok @@ -126,10 +126,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +139,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:26:48 GMT + - Thu, 18 Jun 2020 20:39:58 GMT pragma: - no-cache server: @@ -157,7 +157,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,10 +175,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +188,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:27:19 GMT + - Thu, 18 Jun 2020 20:40:28 GMT pragma: - no-cache server: @@ -206,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,10 +224,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +237,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:27:49 GMT + - Thu, 18 Jun 2020 20:40:58 GMT pragma: - no-cache server: @@ -255,7 +255,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,10 +273,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +286,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:28:19 GMT + - Thu, 18 Jun 2020 20:41:28 GMT pragma: - no-cache server: @@ -304,7 +304,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,10 +322,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +335,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:28:50 GMT + - Thu, 18 Jun 2020 20:41:59 GMT pragma: - no-cache server: @@ -353,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,10 +371,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +384,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:29:20 GMT + - Thu, 18 Jun 2020 20:42:29 GMT pragma: - no-cache server: @@ -402,7 +402,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,10 +420,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +433,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:29:50 GMT + - Thu, 18 Jun 2020 20:43:00 GMT pragma: - no-cache server: @@ -451,7 +451,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,10 +469,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +482,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:30:20 GMT + - Thu, 18 Jun 2020 20:43:30 GMT pragma: - no-cache server: @@ -500,7 +500,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,10 +518,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +531,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:30:51 GMT + - Thu, 18 Jun 2020 20:44:00 GMT pragma: - no-cache server: @@ -549,7 +549,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,10 +567,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +580,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:31:23 GMT + - Thu, 18 Jun 2020 20:44:29 GMT pragma: - no-cache server: @@ -598,7 +598,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,10 +616,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +629,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:31:54 GMT + - Thu, 18 Jun 2020 20:45:00 GMT pragma: - no-cache server: @@ -647,7 +647,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,10 +665,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +678,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:32:23 GMT + - Thu, 18 Jun 2020 20:45:30 GMT pragma: - no-cache server: @@ -696,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,10 +714,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +727,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:32:54 GMT + - Thu, 18 Jun 2020 20:46:00 GMT pragma: - no-cache server: @@ -745,7 +745,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,10 +763,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +776,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:33:25 GMT + - Thu, 18 Jun 2020 20:46:31 GMT pragma: - no-cache server: @@ -794,7 +794,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,10 +812,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:33:55 GMT + - Thu, 18 Jun 2020 20:47:01 GMT pragma: - no-cache server: @@ -843,7 +843,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,10 +861,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:34:25 GMT + - Thu, 18 Jun 2020 20:47:31 GMT pragma: - no-cache server: @@ -892,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -910,10 +910,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:34:56 GMT + - Thu, 18 Jun 2020 20:48:01 GMT pragma: - no-cache server: @@ -941,7 +941,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -959,10 +959,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:35:26 GMT + - Thu, 18 Jun 2020 20:48:31 GMT pragma: - no-cache server: @@ -990,7 +990,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1008,10 +1008,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:35:57 GMT + - Thu, 18 Jun 2020 20:49:02 GMT pragma: - no-cache server: @@ -1039,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1057,10 +1057,598 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:49:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:50:02 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:50:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:51:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:51:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:52:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:52:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:53:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:53:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:54:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:54:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:55:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1070,11 +1658,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/fea1ea03-b6f6-46fc-aefe-bed4d479b501?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9bb8a75e-c6d1-4c16-8310-c7ed2551cb58?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:36:27 GMT + - Thu, 18 Jun 2020 20:55:36 GMT pragma: - no-cache server: @@ -1088,7 +1676,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1106,29 +1694,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2024' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accountysvjdkjio6bgjqlnkufxxx5khnqmdzzronhpim4zcjowu432yy/providers/Microsoft.DocumentDB/databaseAccounts/cliobvtcjaqxpsror3yms32pv4nm7gxgrwerpgzf?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountcejjv5woa35x64djuh2vtevipjubqixejn7yk6g5g32z7sccxy/providers/Microsoft.DocumentDB/databaseAccounts/climkkezcn4avgydwyuvtpjgj6znyym6puxbyi4z?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:36:27 GMT + - Thu, 18 Jun 2020 20:55:36 GMT pragma: - no-cache server: @@ -1142,7 +1730,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1160,31 +1748,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"apiProperties":null,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2024' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accountysvjdkjio6bgjqlnkufxxx5khnqmdzzronhpim4zcjowu432yy/providers/Microsoft.DocumentDB/databaseAccounts/cliobvtcjaqxpsror3yms32pv4nm7gxgrwerpgzf?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountcejjv5woa35x64djuh2vtevipjubqixejn7yk6g5g32z7sccxy/providers/Microsoft.DocumentDB/databaseAccounts/climkkezcn4avgydwyuvtpjgj6znyym6puxbyi4z?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:36:28 GMT + - Thu, 18 Jun 2020 20:55:37 GMT pragma: - no-cache server: @@ -1198,7 +1786,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1218,30 +1806,30 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/resourceGroups/cli_test_cosmosdb_accountysvjdkjio6bgjqlnkufxxx5khnqmdzzronhpim4zcjowu432yy/providers/Microsoft.DocumentDB/databaseAccounts/cliobvtcjaqxpsror3yms32pv4nm7gxgrwerpgzf?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountcejjv5woa35x64djuh2vtevipjubqixejn7yk6g5g32z7sccxy/providers/Microsoft.DocumentDB/databaseAccounts/climkkezcn4avgydwyuvtpjgj6znyym6puxbyi4z?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:36:29 GMT + - Thu, 18 Jun 2020 20:55:39 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/operationResults/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationResults/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 pragma: - no-cache server: @@ -1251,7 +1839,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -1271,10 +1859,108 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:56:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:56:40 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --yes + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1284,11 +1970,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:36:59 GMT + - Thu, 18 Jun 2020 20:57:10 GMT pragma: - no-cache server: @@ -1302,7 +1988,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1320,10 +2006,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1333,11 +2019,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:37:29 GMT + - Thu, 18 Jun 2020 20:57:40 GMT pragma: - no-cache server: @@ -1351,7 +2037,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1369,10 +2055,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1382,11 +2068,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:38:00 GMT + - Thu, 18 Jun 2020 20:58:10 GMT pragma: - no-cache server: @@ -1400,7 +2086,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1418,10 +2104,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1431,11 +2117,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:38:30 GMT + - Thu, 18 Jun 2020 20:58:40 GMT pragma: - no-cache server: @@ -1449,7 +2135,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1467,10 +2153,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1480,11 +2166,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:39:00 GMT + - Thu, 18 Jun 2020 20:59:11 GMT pragma: - no-cache server: @@ -1498,7 +2184,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1516,10 +2202,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1529,11 +2215,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:39:31 GMT + - Thu, 18 Jun 2020 20:59:41 GMT pragma: - no-cache server: @@ -1547,7 +2233,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1565,10 +2251,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1578,11 +2264,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:40:00 GMT + - Thu, 18 Jun 2020 21:00:11 GMT pragma: - no-cache server: @@ -1596,7 +2282,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1614,10 +2300,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1627,11 +2313,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:40:32 GMT + - Thu, 18 Jun 2020 21:00:42 GMT pragma: - no-cache server: @@ -1645,7 +2331,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1663,10 +2349,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1676,11 +2362,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:41:02 GMT + - Thu, 18 Jun 2020 21:01:12 GMT pragma: - no-cache server: @@ -1694,7 +2380,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1712,10 +2398,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1725,11 +2411,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:41:32 GMT + - Thu, 18 Jun 2020 21:01:42 GMT pragma: - no-cache server: @@ -1743,7 +2429,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1761,10 +2447,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1774,11 +2460,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:42:03 GMT + - Thu, 18 Jun 2020 21:02:13 GMT pragma: - no-cache server: @@ -1792,7 +2478,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1810,10 +2496,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1823,11 +2509,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:42:33 GMT + - Thu, 18 Jun 2020 21:02:43 GMT pragma: - no-cache server: @@ -1841,7 +2527,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1859,10 +2545,10 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-cosmosdb/0.13.0 Azure-SDK-For-Python AZURECLI/2.4.0 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1872,11 +2558,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/15d08dec-240b-4ba6-b837-442a4efe11bc/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2dba261c-5e01-4dac-8b27-7f151f8c0007?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/78fb1aac-677c-40cb-ad93-4b83ed0fa6fb?api-version=2020-04-01 content-type: - application/json date: - - Tue, 21 Apr 2020 22:43:04 GMT + - Thu, 18 Jun 2020 21:03:14 GMT pragma: - no-cache server: @@ -1890,7 +2576,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.10.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_enable_multiple_write_locations.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_enable_multiple_write_locations.yaml index ecf2819a19f..25a23d05cbe 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_enable_multiple_write_locations.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_enable_multiple_write_locations.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:14:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:40:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:14:06 GMT + - Thu, 18 Jun 2020 20:40:29 GMT expires: - '-1' pragma: @@ -49,7 +49,7 @@ interactions: {"defaultConsistencyLevel": "ConsistentPrefix", "maxStalenessPrefix": 100, "maxIntervalInSeconds": 5}, "locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": "Standard", "enableMultipleWriteLocations": - true}}' + true, "apiProperties": {}}}' headers: Accept: - application/json @@ -60,41 +60,41 @@ interactions: Connection: - keep-alive Content-Length: - - '360' + - '381' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":true,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":true,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1567' + - '1685' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoqxr5wwrbnluikrel62t6nocg5umc2obwtaak2fgce7q33njwl/providers/Microsoft.DocumentDB/databaseAccounts/cliw6mhe6ntl65gedqwcbibale6xldotndu42w4t?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account5p7uex7qn2celwa3grv7ul3a2tveo5qt5f4tsfnramebofkezj/providers/Microsoft.DocumentDB/databaseAccounts/cli2memj2yggupgn3wb2rmj4sbiqtr6dedqeg647?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:14:09 GMT + - Thu, 18 Jun 2020 20:40:34 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 pragma: - no-cache server: @@ -108,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -128,24 +128,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:14:40 GMT + - Thu, 18 Jun 2020 20:41:04 GMT pragma: - no-cache server: @@ -159,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -177,24 +177,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:15:10 GMT + - Thu, 18 Jun 2020 20:41:35 GMT pragma: - no-cache server: @@ -208,7 +208,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -226,24 +226,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:15:41 GMT + - Thu, 18 Jun 2020 20:42:06 GMT pragma: - no-cache server: @@ -257,7 +257,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -275,24 +275,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:16:11 GMT + - Thu, 18 Jun 2020 20:42:35 GMT pragma: - no-cache server: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -324,24 +324,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:16:43 GMT + - Thu, 18 Jun 2020 20:43:06 GMT pragma: - no-cache server: @@ -355,7 +355,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -373,24 +373,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:13 GMT + - Thu, 18 Jun 2020 20:43:36 GMT pragma: - no-cache server: @@ -404,7 +404,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -422,24 +422,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:44 GMT + - Thu, 18 Jun 2020 20:44:06 GMT pragma: - no-cache server: @@ -453,7 +453,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -471,24 +471,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:14 GMT + - Thu, 18 Jun 2020 20:44:37 GMT pragma: - no-cache server: @@ -502,7 +502,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -520,24 +520,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:45 GMT + - Thu, 18 Jun 2020 20:45:07 GMT pragma: - no-cache server: @@ -551,7 +551,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -569,24 +569,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:15 GMT + - Thu, 18 Jun 2020 20:45:37 GMT pragma: - no-cache server: @@ -600,7 +600,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -618,24 +618,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:46 GMT + - Thu, 18 Jun 2020 20:46:07 GMT pragma: - no-cache server: @@ -649,7 +649,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -667,24 +667,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:20:16 GMT + - Thu, 18 Jun 2020 20:46:38 GMT pragma: - no-cache server: @@ -698,7 +698,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -716,24 +716,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:20:47 GMT + - Thu, 18 Jun 2020 20:47:09 GMT pragma: - no-cache server: @@ -747,7 +747,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -765,24 +765,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:17 GMT + - Thu, 18 Jun 2020 20:47:39 GMT pragma: - no-cache server: @@ -796,7 +796,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -814,24 +814,24 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e18f3816-d2f2-4d18-bd4f-1d33d5a01a96?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:47 GMT + - Thu, 18 Jun 2020 20:48:09 GMT pragma: - no-cache server: @@ -845,7 +845,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -863,29 +863,911 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:48:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:49:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:49:40 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:50:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:50:40 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:51:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:51:41 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:52:11 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:52:42 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:53:12 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:53:42 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:54:13 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:54:43 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:55:13 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:55:43 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:56:14 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:56:44 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/b265d318-bef9-4741-958b-8024cceaace0?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:57:14 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --enable-multiple-write-locations --default-consistency-level + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":true,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":true,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1956' + - '2090' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoqxr5wwrbnluikrel62t6nocg5umc2obwtaak2fgce7q33njwl/providers/Microsoft.DocumentDB/databaseAccounts/cliw6mhe6ntl65gedqwcbibale6xldotndu42w4t?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account5p7uex7qn2celwa3grv7ul3a2tveo5qt5f4tsfnramebofkezj/providers/Microsoft.DocumentDB/databaseAccounts/cli2memj2yggupgn3wb2rmj4sbiqtr6dedqeg647?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:47 GMT + - Thu, 18 Jun 2020 20:57:14 GMT pragma: - no-cache server: @@ -899,7 +1781,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -917,31 +1799,31 @@ interactions: ParameterSetName: - -n -g --enable-multiple-write-locations --default-consistency-level User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":true,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":true,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1956' + - '2090' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoqxr5wwrbnluikrel62t6nocg5umc2obwtaak2fgce7q33njwl/providers/Microsoft.DocumentDB/databaseAccounts/cliw6mhe6ntl65gedqwcbibale6xldotndu42w4t?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account5p7uex7qn2celwa3grv7ul3a2tveo5qt5f4tsfnramebofkezj/providers/Microsoft.DocumentDB/databaseAccounts/cli2memj2yggupgn3wb2rmj4sbiqtr6dedqeg647?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:48 GMT + - Thu, 18 Jun 2020 20:57:16 GMT pragma: - no-cache server: @@ -955,7 +1837,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -973,31 +1855,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":true,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":true,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"ConsistentPrefix","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1956' + - '2090' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoqxr5wwrbnluikrel62t6nocg5umc2obwtaak2fgce7q33njwl/providers/Microsoft.DocumentDB/databaseAccounts/cliw6mhe6ntl65gedqwcbibale6xldotndu42w4t?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_account5p7uex7qn2celwa3grv7ul3a2tveo5qt5f4tsfnramebofkezj/providers/Microsoft.DocumentDB/databaseAccounts/cli2memj2yggupgn3wb2rmj4sbiqtr6dedqeg647?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:48 GMT + - Thu, 18 Jun 2020 20:57:17 GMT pragma: - no-cache server: @@ -1011,7 +1893,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_keys_database_account.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_keys_database_account.yaml index 698898fb179..60d11898c10 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_keys_database_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_keys_database_account.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:13:03Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:43:30Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:13:03 GMT + - Thu, 18 Jun 2020 20:43:31 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1559' + - '1677' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountd4jn7ujniao3mvx5gnutkbwirebnaki4twqrqswezjwts4zrlv/providers/Microsoft.DocumentDB/databaseAccounts/clir2cx5l6sut6uqv3mtbl5674of7iwgieelkppg?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountcodtsmn4xv4i4bp5k2qzw4a4dlr3ofjenuzwzfg75zkwt5n74b/providers/Microsoft.DocumentDB/databaseAccounts/clikppxwhvnveeoibfybdtnvonukvxsasedegb75?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:06 GMT + - Thu, 18 Jun 2020 20:43:37 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,450 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:44:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:44:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:45:08 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:45:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:46:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:46:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:47:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:47:41 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:48:11 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,24 +567,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:13:35 GMT + - Thu, 18 Jun 2020 20:48:41 GMT pragma: - no-cache server: @@ -157,7 +598,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,24 +616,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:14:06 GMT + - Thu, 18 Jun 2020 20:49:11 GMT pragma: - no-cache server: @@ -206,7 +647,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,24 +665,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:14:36 GMT + - Thu, 18 Jun 2020 20:49:43 GMT pragma: - no-cache server: @@ -255,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,24 +714,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:15:06 GMT + - Thu, 18 Jun 2020 20:50:13 GMT pragma: - no-cache server: @@ -304,7 +745,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,24 +763,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:15:37 GMT + - Thu, 18 Jun 2020 20:50:43 GMT pragma: - no-cache server: @@ -353,7 +794,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,24 +812,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:16:06 GMT + - Thu, 18 Jun 2020 20:51:13 GMT pragma: - no-cache server: @@ -402,7 +843,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,24 +861,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:16:37 GMT + - Thu, 18 Jun 2020 20:51:44 GMT pragma: - no-cache server: @@ -451,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,24 +910,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:07 GMT + - Thu, 18 Jun 2020 20:52:14 GMT pragma: - no-cache server: @@ -500,7 +941,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,24 +959,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:17:37 GMT + - Thu, 18 Jun 2020 20:52:44 GMT pragma: - no-cache server: @@ -549,7 +990,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,24 +1008,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:07 GMT + - Thu, 18 Jun 2020 20:53:14 GMT pragma: - no-cache server: @@ -598,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,24 +1057,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:18:37 GMT + - Thu, 18 Jun 2020 20:53:45 GMT pragma: - no-cache server: @@ -647,7 +1088,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,24 +1106,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:08 GMT + - Thu, 18 Jun 2020 20:54:15 GMT pragma: - no-cache server: @@ -696,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,24 +1155,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:38 GMT + - Thu, 18 Jun 2020 20:54:45 GMT pragma: - no-cache server: @@ -745,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,24 +1204,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:20:08 GMT + - Thu, 18 Jun 2020 20:55:15 GMT pragma: - no-cache server: @@ -794,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,24 +1253,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:20:38 GMT + - Thu, 18 Jun 2020 20:55:47 GMT pragma: - no-cache server: @@ -843,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,24 +1302,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:08 GMT + - Thu, 18 Jun 2020 20:56:16 GMT pragma: - no-cache server: @@ -892,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -910,24 +1351,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:39 GMT + - Thu, 18 Jun 2020 20:56:46 GMT pragma: - no-cache server: @@ -941,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -959,24 +1400,269 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:57:17 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:57:47 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:58:17 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:58:48 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:59:18 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:09 GMT + - Thu, 18 Jun 2020 20:59:48 GMT pragma: - no-cache server: @@ -990,7 +1676,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1008,24 +1694,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/40747e99-ab34-4539-ba06-4427a2b1108b?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e4658c41-d15f-4d04-9406-a49b79952be9?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:39 GMT + - Thu, 18 Jun 2020 21:00:18 GMT pragma: - no-cache server: @@ -1039,7 +1725,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1057,29 +1743,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountd4jn7ujniao3mvx5gnutkbwirebnaki4twqrqswezjwts4zrlv/providers/Microsoft.DocumentDB/databaseAccounts/clir2cx5l6sut6uqv3mtbl5674of7iwgieelkppg?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountcodtsmn4xv4i4bp5k2qzw4a4dlr3ofjenuzwzfg75zkwt5n74b/providers/Microsoft.DocumentDB/databaseAccounts/clikppxwhvnveeoibfybdtnvonukvxsasedegb75?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:39 GMT + - Thu, 18 Jun 2020 21:00:18 GMT pragma: - no-cache server: @@ -1093,7 +1779,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1111,31 +1797,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountd4jn7ujniao3mvx5gnutkbwirebnaki4twqrqswezjwts4zrlv/providers/Microsoft.DocumentDB/databaseAccounts/clir2cx5l6sut6uqv3mtbl5674of7iwgieelkppg?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountcodtsmn4xv4i4bp5k2qzw4a4dlr3ofjenuzwzfg75zkwt5n74b/providers/Microsoft.DocumentDB/databaseAccounts/clikppxwhvnveeoibfybdtnvonukvxsasedegb75?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:40 GMT + - Thu, 18 Jun 2020 21:00:19 GMT pragma: - no-cache server: @@ -1149,7 +1835,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1169,15 +1855,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"tgkI4Xp50ylMoCViL08P6UwRZcuBRPG6KWAt8cO52RseanVtjHNtaQLi3VvNDLys5s6cx89KanVAZ4z90UZhPg==","secondaryMasterKey":"pHEoJa6LyqfQrCHP3NSsq8vJBh1OJl3QwwpmuuWW1LnvQqK8J5bTXR9i8q39yKPw1bJHWPcuWag1sfzN91fjgA==","primaryReadonlyMasterKey":"dOCaPAQLWQ0r7YytjF5R61STiWkNDlncs36Zt6MBjz8lQN3gdlVDQCDNbEH9pXJWYOxsRfoWAtt8VKWyeAgTxw==","secondaryReadonlyMasterKey":"LxN0JydQqVsSvy1AvbbA4p2OP21yXFCZ1tWXFUsJ99U9MvNeftvt4HlZvKOznviBuFlrWmLRn97wp9emxboGZw=="}' + string: '{"primaryMasterKey":"78QB1kGnypbYYsva2A1ZPLUBG8QcSUBfv6mvXwdE3v2OlxxGdlqxlwZRSkrqAfhTUosaU2tx1QnxZ7NnN05Xrg==","secondaryMasterKey":"uP5U6zPq3tR2CKkeK8CNI7tLgHUGU8pL51T83bd1qK76yIR94XKSj0C7AdvEKp6AYcCK7Ae2njsSXEVfx5qBOA==","primaryReadonlyMasterKey":"2blugWgLS3lUrcWLAKQaPmJw84MZc3jP5rVsxdaGbIGxLPiOKbYRGCV5JQtqST7ewmoO6QKZKhnLfYFLG9MwWA==","secondaryReadonlyMasterKey":"Zsw5ZDJPfNJNBfyE6RkQVe8NommrkmIt1dzW4iovRSzJ9XWKZkYAtEuzZnHfyxu0010aFO4N8msVnn5BPRGXFA=="}' headers: cache-control: - no-store, no-cache @@ -1186,7 +1872,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:40 GMT + - Thu, 18 Jun 2020 21:00:20 GMT pragma: - no-cache server: @@ -1200,7 +1886,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1224,28 +1910,28 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3055954-ac2c-4bc3-92cc-17fc09428440?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/65e0731b-65d9-4782-b9f2-6f037a238a23?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:42 GMT + - Thu, 18 Jun 2020 21:00:22 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey/operationResults/e3055954-ac2c-4bc3-92cc-17fc09428440?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey/operationResults/65e0731b-65d9-4782-b9f2-6f037a238a23?api-version=2020-04-01 pragma: - no-cache server: @@ -1255,9 +1941,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1275,24 +1961,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3055954-ac2c-4bc3-92cc-17fc09428440?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/65e0731b-65d9-4782-b9f2-6f037a238a23?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3055954-ac2c-4bc3-92cc-17fc09428440?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/65e0731b-65d9-4782-b9f2-6f037a238a23?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:13 GMT + - Thu, 18 Jun 2020 21:00:53 GMT pragma: - no-cache server: @@ -1306,7 +1992,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1324,24 +2010,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3055954-ac2c-4bc3-92cc-17fc09428440?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/65e0731b-65d9-4782-b9f2-6f037a238a23?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3055954-ac2c-4bc3-92cc-17fc09428440?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/65e0731b-65d9-4782-b9f2-6f037a238a23?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:44 GMT + - Thu, 18 Jun 2020 21:01:23 GMT pragma: - no-cache server: @@ -1355,7 +2041,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1373,24 +2059,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3055954-ac2c-4bc3-92cc-17fc09428440?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/65e0731b-65d9-4782-b9f2-6f037a238a23?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e3055954-ac2c-4bc3-92cc-17fc09428440?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/65e0731b-65d9-4782-b9f2-6f037a238a23?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:14 GMT + - Thu, 18 Jun 2020 21:01:53 GMT pragma: - no-cache server: @@ -1404,7 +2090,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1426,28 +2112,28 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b07abd-f3a3-4948-acf8-baca63fae8e5?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2406a2-4b8c-42ee-afc9-722baff20d0f?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:17 GMT + - Thu, 18 Jun 2020 21:01:56 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey/operationResults/f7b07abd-f3a3-4948-acf8-baca63fae8e5?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey/operationResults/ca2406a2-4b8c-42ee-afc9-722baff20d0f?api-version=2020-04-01 pragma: - no-cache server: @@ -1457,7 +2143,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1477,24 +2163,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b07abd-f3a3-4948-acf8-baca63fae8e5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2406a2-4b8c-42ee-afc9-722baff20d0f?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b07abd-f3a3-4948-acf8-baca63fae8e5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2406a2-4b8c-42ee-afc9-722baff20d0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:47 GMT + - Thu, 18 Jun 2020 21:02:26 GMT pragma: - no-cache server: @@ -1508,7 +2194,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1526,24 +2212,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b07abd-f3a3-4948-acf8-baca63fae8e5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2406a2-4b8c-42ee-afc9-722baff20d0f?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b07abd-f3a3-4948-acf8-baca63fae8e5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2406a2-4b8c-42ee-afc9-722baff20d0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:18 GMT + - Thu, 18 Jun 2020 21:02:56 GMT pragma: - no-cache server: @@ -1557,7 +2243,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1575,24 +2261,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b07abd-f3a3-4948-acf8-baca63fae8e5?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2406a2-4b8c-42ee-afc9-722baff20d0f?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/f7b07abd-f3a3-4948-acf8-baca63fae8e5?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ca2406a2-4b8c-42ee-afc9-722baff20d0f?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:48 GMT + - Thu, 18 Jun 2020 21:03:27 GMT pragma: - no-cache server: @@ -1606,7 +2292,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1628,28 +2314,28 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25505dac-b946-4f3a-83e8-43cf835ef091?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26507c96-bd6c-494a-a9bc-ec0a98952058?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:51 GMT + - Thu, 18 Jun 2020 21:03:29 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey/operationResults/25505dac-b946-4f3a-83e8-43cf835ef091?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey/operationResults/26507c96-bd6c-494a-a9bc-ec0a98952058?api-version=2020-04-01 pragma: - no-cache server: @@ -1659,7 +2345,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1679,24 +2365,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25505dac-b946-4f3a-83e8-43cf835ef091?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26507c96-bd6c-494a-a9bc-ec0a98952058?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25505dac-b946-4f3a-83e8-43cf835ef091?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26507c96-bd6c-494a-a9bc-ec0a98952058?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:21 GMT + - Thu, 18 Jun 2020 21:04:00 GMT pragma: - no-cache server: @@ -1710,7 +2396,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1728,24 +2414,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25505dac-b946-4f3a-83e8-43cf835ef091?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26507c96-bd6c-494a-a9bc-ec0a98952058?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25505dac-b946-4f3a-83e8-43cf835ef091?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26507c96-bd6c-494a-a9bc-ec0a98952058?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:51 GMT + - Thu, 18 Jun 2020 21:04:31 GMT pragma: - no-cache server: @@ -1759,7 +2445,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1777,24 +2463,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25505dac-b946-4f3a-83e8-43cf835ef091?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26507c96-bd6c-494a-a9bc-ec0a98952058?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/25505dac-b946-4f3a-83e8-43cf835ef091?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/26507c96-bd6c-494a-a9bc-ec0a98952058?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:23 GMT + - Thu, 18 Jun 2020 21:05:01 GMT pragma: - no-cache server: @@ -1808,7 +2494,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1830,28 +2516,28 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37860a3d-66bf-452a-9aa2-aad41f2903b4?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44f24e4c-2339-4597-827e-3f105414bb39?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:24 GMT + - Thu, 18 Jun 2020 21:05:03 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey/operationResults/37860a3d-66bf-452a-9aa2-aad41f2903b4?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/regenerateKey/operationResults/44f24e4c-2339-4597-827e-3f105414bb39?api-version=2020-04-01 pragma: - no-cache server: @@ -1861,7 +2547,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1881,24 +2567,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37860a3d-66bf-452a-9aa2-aad41f2903b4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44f24e4c-2339-4597-827e-3f105414bb39?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37860a3d-66bf-452a-9aa2-aad41f2903b4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44f24e4c-2339-4597-827e-3f105414bb39?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:55 GMT + - Thu, 18 Jun 2020 21:05:34 GMT pragma: - no-cache server: @@ -1912,7 +2598,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1930,24 +2616,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37860a3d-66bf-452a-9aa2-aad41f2903b4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44f24e4c-2339-4597-827e-3f105414bb39?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37860a3d-66bf-452a-9aa2-aad41f2903b4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44f24e4c-2339-4597-827e-3f105414bb39?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:25 GMT + - Thu, 18 Jun 2020 21:06:04 GMT pragma: - no-cache server: @@ -1961,7 +2647,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1979,24 +2665,24 @@ interactions: ParameterSetName: - -n -g --key-kind User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37860a3d-66bf-452a-9aa2-aad41f2903b4?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44f24e4c-2339-4597-827e-3f105414bb39?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/37860a3d-66bf-452a-9aa2-aad41f2903b4?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/44f24e4c-2339-4597-827e-3f105414bb39?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:55 GMT + - Thu, 18 Jun 2020 21:06:35 GMT pragma: - no-cache server: @@ -2010,7 +2696,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2030,15 +2716,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"tggyH77Qy9LpFPp6rxreyHbSXHaNpoQDlhf6jkBBbBXg9xjYDRQVguBKzEfIGVqzunU02Quf4thfi2rbxkHylw==","secondaryMasterKey":"aeqgarVwxjJPPPquwhNl17ITbUtPx4R4LuGPFD1GsiW7oNnePa6LFjty7yjlHdNq3LPMKWAMwUat2LVP7o9tog==","primaryReadonlyMasterKey":"aHjjpwPewalI8Mt5qe1moguXBTavKVpQbvLlIHUogZEESVppThQ0SCobvVl0W9FkDa9bT5hKbmLNwev73blCdQ==","secondaryReadonlyMasterKey":"9HyQaRJJNXujjycg4ZNc6NzpXTtPMTl83bLuI5kNHITUff0MNf2q3PpDEL7sbcZUlfxRf3rbO7lM4Z6Ama2b1Q=="}' + string: '{"primaryMasterKey":"S4VVblztiAa7lylHTPFIz6asGlTXhJEgG8CRCYZ9OuWlfSF4RRmfxxtGqOJHoE26XY3IYJDq9O3pg1a2DxvGVQ==","secondaryMasterKey":"Gex1wl1xOJD2BrEH2tJTJziKYU98lgJBZI2lNpk8mvWyuNkoM7t2OqUmCV3fMUOiXwKSUs7ATjltVdTOMzTwHw==","primaryReadonlyMasterKey":"R3d8M2RqShqD0HvFbwOFLpYhhWaHJ95ezzoTFkzsIJkdhsk6sIJNUZ8wimbLWgmLVwSu8T3btV3cLy8YzbVBAQ==","secondaryReadonlyMasterKey":"EI0rqKZniDiwRXjkQWXCUdpL7NOKDrt4i6KW0pgtInkzWOgvtnAs4vf21HdpWDlaukEUZ6v0Vlvs6nO1E6MN9Q=="}' headers: cache-control: - no-store, no-cache @@ -2047,7 +2733,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:57 GMT + - Thu, 18 Jun 2020 21:06:36 GMT pragma: - no-cache server: @@ -2061,7 +2747,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2083,15 +2769,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/readonlykeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/readonlykeys?api-version=2020-04-01 response: body: - string: '{"primaryReadonlyMasterKey":"aHjjpwPewalI8Mt5qe1moguXBTavKVpQbvLlIHUogZEESVppThQ0SCobvVl0W9FkDa9bT5hKbmLNwev73blCdQ==","secondaryReadonlyMasterKey":"9HyQaRJJNXujjycg4ZNc6NzpXTtPMTl83bLuI5kNHITUff0MNf2q3PpDEL7sbcZUlfxRf3rbO7lM4Z6Ama2b1Q=="}' + string: '{"primaryReadonlyMasterKey":"R3d8M2RqShqD0HvFbwOFLpYhhWaHJ95ezzoTFkzsIJkdhsk6sIJNUZ8wimbLWgmLVwSu8T3btV3cLy8YzbVBAQ==","secondaryReadonlyMasterKey":"EI0rqKZniDiwRXjkQWXCUdpL7NOKDrt4i6KW0pgtInkzWOgvtnAs4vf21HdpWDlaukEUZ6v0Vlvs6nO1E6MN9Q=="}' headers: cache-control: - no-store, no-cache @@ -2100,7 +2786,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:58 GMT + - Thu, 18 Jun 2020 21:06:37 GMT pragma: - no-cache server: @@ -2114,7 +2800,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -2136,15 +2822,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"tggyH77Qy9LpFPp6rxreyHbSXHaNpoQDlhf6jkBBbBXg9xjYDRQVguBKzEfIGVqzunU02Quf4thfi2rbxkHylw==","secondaryMasterKey":"aeqgarVwxjJPPPquwhNl17ITbUtPx4R4LuGPFD1GsiW7oNnePa6LFjty7yjlHdNq3LPMKWAMwUat2LVP7o9tog==","primaryReadonlyMasterKey":"aHjjpwPewalI8Mt5qe1moguXBTavKVpQbvLlIHUogZEESVppThQ0SCobvVl0W9FkDa9bT5hKbmLNwev73blCdQ==","secondaryReadonlyMasterKey":"9HyQaRJJNXujjycg4ZNc6NzpXTtPMTl83bLuI5kNHITUff0MNf2q3PpDEL7sbcZUlfxRf3rbO7lM4Z6Ama2b1Q=="}' + string: '{"primaryMasterKey":"S4VVblztiAa7lylHTPFIz6asGlTXhJEgG8CRCYZ9OuWlfSF4RRmfxxtGqOJHoE26XY3IYJDq9O3pg1a2DxvGVQ==","secondaryMasterKey":"Gex1wl1xOJD2BrEH2tJTJziKYU98lgJBZI2lNpk8mvWyuNkoM7t2OqUmCV3fMUOiXwKSUs7ATjltVdTOMzTwHw==","primaryReadonlyMasterKey":"R3d8M2RqShqD0HvFbwOFLpYhhWaHJ95ezzoTFkzsIJkdhsk6sIJNUZ8wimbLWgmLVwSu8T3btV3cLy8YzbVBAQ==","secondaryReadonlyMasterKey":"EI0rqKZniDiwRXjkQWXCUdpL7NOKDrt4i6KW0pgtInkzWOgvtnAs4vf21HdpWDlaukEUZ6v0Vlvs6nO1E6MN9Q=="}' headers: cache-control: - no-store, no-cache @@ -2153,7 +2839,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:59 GMT + - Thu, 18 Jun 2020 21:06:39 GMT pragma: - no-cache server: @@ -2167,7 +2853,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_list_database_accounts.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_list_database_accounts.yaml index 5f2165a3c46..c8c5f5adb25 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_list_database_accounts.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_list_database_accounts.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:19:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:42:22Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:19:21 GMT + - Thu, 18 Jun 2020 20:42:23 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1559' + - '1677' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoub7pbwrala4r3olgqp4ggw4aoiao2i6lummiwajswgjucqg6q/providers/Microsoft.DocumentDB/databaseAccounts/cli2yfajooj75am6vyrjvihgorw3imblkxo3ddoq?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvarpciv4ugpqu7tpatd7sl3bgl47a6y6l2defjpwdpdsevlvzj/providers/Microsoft.DocumentDB/databaseAccounts/clitaai45th3zle6peqhm2h4ougpyhztokumk7ny?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:25 GMT + - Thu, 18 Jun 2020 20:42:28 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 pragma: - no-cache server: @@ -106,7 +106,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -126,24 +126,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:19:55 GMT + - Thu, 18 Jun 2020 20:42:58 GMT pragma: - no-cache server: @@ -157,7 +157,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,24 +175,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:20:26 GMT + - Thu, 18 Jun 2020 20:43:29 GMT pragma: - no-cache server: @@ -206,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,24 +224,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:20:56 GMT + - Thu, 18 Jun 2020 20:43:59 GMT pragma: - no-cache server: @@ -255,7 +255,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,24 +273,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:26 GMT + - Thu, 18 Jun 2020 20:44:29 GMT pragma: - no-cache server: @@ -304,7 +304,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,24 +322,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:57 GMT + - Thu, 18 Jun 2020 20:45:01 GMT pragma: - no-cache server: @@ -353,7 +353,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,24 +371,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:27 GMT + - Thu, 18 Jun 2020 20:45:31 GMT pragma: - no-cache server: @@ -402,7 +402,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,24 +420,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:58 GMT + - Thu, 18 Jun 2020 20:46:01 GMT pragma: - no-cache server: @@ -451,7 +451,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,24 +469,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:28 GMT + - Thu, 18 Jun 2020 20:46:31 GMT pragma: - no-cache server: @@ -500,7 +500,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,24 +518,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:58 GMT + - Thu, 18 Jun 2020 20:47:01 GMT pragma: - no-cache server: @@ -549,7 +549,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,24 +567,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:29 GMT + - Thu, 18 Jun 2020 20:47:32 GMT pragma: - no-cache server: @@ -598,7 +598,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,24 +616,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:59 GMT + - Thu, 18 Jun 2020 20:48:02 GMT pragma: - no-cache server: @@ -647,7 +647,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,24 +665,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:29 GMT + - Thu, 18 Jun 2020 20:48:33 GMT pragma: - no-cache server: @@ -696,7 +696,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,24 +714,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:00 GMT + - Thu, 18 Jun 2020 20:49:03 GMT pragma: - no-cache server: @@ -745,7 +745,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,24 +763,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:30 GMT + - Thu, 18 Jun 2020 20:49:33 GMT pragma: - no-cache server: @@ -794,7 +794,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,24 +812,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e889d8fb-6dac-4ada-b4dc-d90366b5cefb?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:00 GMT + - Thu, 18 Jun 2020 20:50:04 GMT pragma: - no-cache server: @@ -843,7 +843,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,29 +861,1276 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:50:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:51:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:51:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:52:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:52:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:53:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:53:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:54:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:54:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:55:08 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:55:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:56:08 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:56:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:57:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:57:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:58:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:58:41 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:59:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:59:41 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/dbb1138b-929e-436c-8cf0-29bc7984d8bd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:00:12 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2082' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvarpciv4ugpqu7tpatd7sl3bgl47a6y6l2defjpwdpdsevlvzj/providers/Microsoft.DocumentDB/databaseAccounts/clitaai45th3zle6peqhm2h4ougpyhztokumk7ny?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:00:12 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2082' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvarpciv4ugpqu7tpatd7sl3bgl47a6y6l2defjpwdpdsevlvzj/providers/Microsoft.DocumentDB/databaseAccounts/clitaai45th3zle6peqhm2h4ougpyhztokumk7ny?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:00:12 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:42:22Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 18 Jun 2020 21:00:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": + [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + Content-Length: + - '219' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + cache-control: + - no-store, no-cache + content-length: + - '1677' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvarpciv4ugpqu7tpatd7sl3bgl47a6y6l2defjpwdpdsevlvzj/providers/Microsoft.DocumentDB/databaseAccounts/cli4sq6dqk6d4ymn3npxdtx4h2ojkuquxjkrjjqd?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:00:20 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:00:50 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoub7pbwrala4r3olgqp4ggw4aoiao2i6lummiwajswgjucqg6q/providers/Microsoft.DocumentDB/databaseAccounts/cli2yfajooj75am6vyrjvihgorw3imblkxo3ddoq?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:00 GMT + - Thu, 18 Jun 2020 21:01:20 GMT pragma: - no-cache server: @@ -897,7 +2144,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -915,31 +2162,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoub7pbwrala4r3olgqp4ggw4aoiao2i6lummiwajswgjucqg6q/providers/Microsoft.DocumentDB/databaseAccounts/cli2yfajooj75am6vyrjvihgorw3imblkxo3ddoq?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:01 GMT + - Thu, 18 Jun 2020 21:01:50 GMT pragma: - no-cache server: @@ -953,7 +2193,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -971,41 +2211,92 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:19:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"status":"Dequeued"}' headers: cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:02:21 GMT + pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache content-length: - - '428' + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 11 Dec 2019 01:27:01 GMT - expires: - - '-1' + - Thu, 18 Jun 2020 21:02:51 GMT pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 - message: OK + message: Ok - request: - body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": - [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + body: null headers: Accept: - application/json @@ -1015,42 +2306,27 @@ interactions: - cosmosdb create Connection: - keep-alive - Content-Length: - - '198' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + string: '{"status":"Dequeued"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 cache-control: - no-store, no-cache content-length: - - '1559' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoub7pbwrala4r3olgqp4ggw4aoiao2i6lummiwajswgjucqg6q/providers/Microsoft.DocumentDB/databaseAccounts/cli7tqyxehi7cfspga3wxmjc6dz2cpruqmrt23ti?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:03 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003/operationResults/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - Thu, 18 Jun 2020 21:03:22 GMT pragma: - no-cache server: @@ -1064,9 +2340,203 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:03:52 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:04:22 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:04:53 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:05:23 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -1084,24 +2554,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:34 GMT + - Thu, 18 Jun 2020 21:05:54 GMT pragma: - no-cache server: @@ -1115,7 +2585,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1133,24 +2603,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:04 GMT + - Thu, 18 Jun 2020 21:06:24 GMT pragma: - no-cache server: @@ -1164,7 +2634,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1182,24 +2652,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:35 GMT + - Thu, 18 Jun 2020 21:06:55 GMT pragma: - no-cache server: @@ -1213,7 +2683,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1231,24 +2701,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:05 GMT + - Thu, 18 Jun 2020 21:07:25 GMT pragma: - no-cache server: @@ -1262,7 +2732,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1280,24 +2750,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:35 GMT + - Thu, 18 Jun 2020 21:07:55 GMT pragma: - no-cache server: @@ -1311,7 +2781,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1329,24 +2799,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:30:06 GMT + - Thu, 18 Jun 2020 21:08:26 GMT pragma: - no-cache server: @@ -1360,7 +2830,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1378,24 +2848,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:30:36 GMT + - Thu, 18 Jun 2020 21:08:56 GMT pragma: - no-cache server: @@ -1409,7 +2879,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1427,24 +2897,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:31:06 GMT + - Thu, 18 Jun 2020 21:09:26 GMT pragma: - no-cache server: @@ -1458,7 +2928,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1476,24 +2946,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:31:37 GMT + - Thu, 18 Jun 2020 21:09:57 GMT pragma: - no-cache server: @@ -1507,7 +2977,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1525,24 +2995,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:32:08 GMT + - Thu, 18 Jun 2020 21:10:27 GMT pragma: - no-cache server: @@ -1556,7 +3026,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1574,24 +3044,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:32:38 GMT + - Thu, 18 Jun 2020 21:10:58 GMT pragma: - no-cache server: @@ -1605,7 +3075,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1623,24 +3093,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:33:08 GMT + - Thu, 18 Jun 2020 21:11:28 GMT pragma: - no-cache server: @@ -1654,7 +3124,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1672,24 +3142,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:33:38 GMT + - Thu, 18 Jun 2020 21:11:58 GMT pragma: - no-cache server: @@ -1703,7 +3173,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1721,24 +3191,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:09 GMT + - Thu, 18 Jun 2020 21:12:29 GMT pragma: - no-cache server: @@ -1752,7 +3222,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1770,24 +3240,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/ef825ad6-9e6a-4320-a309-b13b860de860?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/21ab88f9-6430-4caa-9fec-6d631b9dfe0b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:39 GMT + - Thu, 18 Jun 2020 21:12:59 GMT pragma: - no-cache server: @@ -1801,7 +3271,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1819,29 +3289,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoub7pbwrala4r3olgqp4ggw4aoiao2i6lummiwajswgjucqg6q/providers/Microsoft.DocumentDB/databaseAccounts/cli7tqyxehi7cfspga3wxmjc6dz2cpruqmrt23ti?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvarpciv4ugpqu7tpatd7sl3bgl47a6y6l2defjpwdpdsevlvzj/providers/Microsoft.DocumentDB/databaseAccounts/cli4sq6dqk6d4ymn3npxdtx4h2ojkuquxjkrjjqd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:39 GMT + - Thu, 18 Jun 2020 21:13:00 GMT pragma: - no-cache server: @@ -1855,7 +3325,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1873,31 +3343,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoub7pbwrala4r3olgqp4ggw4aoiao2i6lummiwajswgjucqg6q/providers/Microsoft.DocumentDB/databaseAccounts/cli7tqyxehi7cfspga3wxmjc6dz2cpruqmrt23ti?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvarpciv4ugpqu7tpatd7sl3bgl47a6y6l2defjpwdpdsevlvzj/providers/Microsoft.DocumentDB/databaseAccounts/cli4sq6dqk6d4ymn3npxdtx4h2ojkuquxjkrjjqd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:39 GMT + - Thu, 18 Jun 2020 21:13:00 GMT pragma: - no-cache server: @@ -1911,7 +3381,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1929,36 +3399,36 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts?api-version=2020-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000003","name":"cli000003","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000003.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000003-westus","locationName":"West US","documentEndpoint":"https://cli000003-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000003-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}]}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}]}' headers: cache-control: - no-store, no-cache content-length: - - '3909' + - '4177' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountoub7pbwrala4r3olgqp4ggw4aoiao2i6lummiwajswgjucqg6q/providers/Microsoft.DocumentDB/databaseAccounts?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvarpciv4ugpqu7tpatd7sl3bgl47a6y6l2defjpwdpdsevlvzj/providers/Microsoft.DocumentDB/databaseAccounts?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:41 GMT + - Thu, 18 Jun 2020 21:13:07 GMT pragma: - no-cache server: @@ -1972,7 +3442,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_list_databases.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_list_databases.yaml index 60e3fb7c95a..3432813e70c 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_list_databases.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_list_databases.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:22:12Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:41:29Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:22:13 GMT + - Thu, 18 Jun 2020 20:41:30 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1559' + - '1677' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountaecoxjaflr7blkiyjvtofl2vr5wo6ozsru6ij6eep6awj6iva3/providers/Microsoft.DocumentDB/databaseAccounts/climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvvxowddkwhlznz6qd5azyx3nlsdjtxqdjetkejiq2t6fay6whz/providers/Microsoft.DocumentDB/databaseAccounts/cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:16 GMT + - Thu, 18 Jun 2020 20:41:35 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +106,695 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:42:06 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:42:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:43:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:43:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:44:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:44:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:45:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:45:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:46:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:46:40 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:47:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:47:41 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:48:11 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:48:42 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -126,24 +812,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:46 GMT + - Thu, 18 Jun 2020 20:49:12 GMT pragma: - no-cache server: @@ -157,7 +843,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -175,24 +861,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:16 GMT + - Thu, 18 Jun 2020 20:49:43 GMT pragma: - no-cache server: @@ -206,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -224,24 +910,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:48 GMT + - Thu, 18 Jun 2020 20:50:13 GMT pragma: - no-cache server: @@ -255,7 +941,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -273,24 +959,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:18 GMT + - Thu, 18 Jun 2020 20:50:43 GMT pragma: - no-cache server: @@ -304,7 +990,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -322,24 +1008,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:48 GMT + - Thu, 18 Jun 2020 20:51:14 GMT pragma: - no-cache server: @@ -353,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -371,24 +1057,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:19 GMT + - Thu, 18 Jun 2020 20:51:45 GMT pragma: - no-cache server: @@ -402,7 +1088,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -420,24 +1106,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:49 GMT + - Thu, 18 Jun 2020 20:52:15 GMT pragma: - no-cache server: @@ -451,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -469,24 +1155,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:20 GMT + - Thu, 18 Jun 2020 20:52:45 GMT pragma: - no-cache server: @@ -500,7 +1186,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -518,24 +1204,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:50 GMT + - Thu, 18 Jun 2020 20:53:15 GMT pragma: - no-cache server: @@ -549,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -567,24 +1253,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:20 GMT + - Thu, 18 Jun 2020 20:53:46 GMT pragma: - no-cache server: @@ -598,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -616,24 +1302,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:51 GMT + - Thu, 18 Jun 2020 20:54:16 GMT pragma: - no-cache server: @@ -647,7 +1333,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -665,24 +1351,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:21 GMT + - Thu, 18 Jun 2020 20:54:46 GMT pragma: - no-cache server: @@ -696,7 +1382,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -714,24 +1400,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:52 GMT + - Thu, 18 Jun 2020 20:55:17 GMT pragma: - no-cache server: @@ -745,7 +1431,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -763,24 +1449,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:22 GMT + - Thu, 18 Jun 2020 20:55:48 GMT pragma: - no-cache server: @@ -794,7 +1480,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -812,24 +1498,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9d385c0b-928e-4c53-a3c9-4e16c0565d98?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:52 GMT + - Thu, 18 Jun 2020 20:56:18 GMT pragma: - no-cache server: @@ -843,7 +1529,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -861,29 +1547,176 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:56:49 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:57:19 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/886256ce-0110-4cbd-b309-54235079933b?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 20:57:49 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountaecoxjaflr7blkiyjvtofl2vr5wo6ozsru6ij6eep6awj6iva3/providers/Microsoft.DocumentDB/databaseAccounts/climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvvxowddkwhlznz6qd5azyx3nlsdjtxqdjetkejiq2t6fay6whz/providers/Microsoft.DocumentDB/databaseAccounts/cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:53 GMT + - Thu, 18 Jun 2020 20:57:49 GMT pragma: - no-cache server: @@ -897,7 +1730,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -915,31 +1748,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountaecoxjaflr7blkiyjvtofl2vr5wo6ozsru6ij6eep6awj6iva3/providers/Microsoft.DocumentDB/databaseAccounts/climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvvxowddkwhlznz6qd5azyx3nlsdjtxqdjetkejiq2t6fay6whz/providers/Microsoft.DocumentDB/databaseAccounts/cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:54 GMT + - Thu, 18 Jun 2020 20:57:50 GMT pragma: - no-cache server: @@ -953,7 +1786,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -973,15 +1806,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"oOSF8XgUv7hbQwOVjgGYwEvPj1BYvdzTy9rbouJoJMpaxGEZ8Am6WkfOtnFre4bTXZNB3GUypST4BLckGkMtIA==","secondaryMasterKey":"HBxIVg11XpKIdDIb0f9jItU9P7DxWIsPRDbDiMKxeuY4PIZPHTSenKEiPSNJifP61nklMcLIf0nRPqxZaug6EQ==","primaryReadonlyMasterKey":"09TBcGSTsZHOpM68yh4FYwUn4U2OhVSoNcqDtsjxfc0WZDz6jxgLDf1aq8vE9c628iGMpnUsyhq4h6o6GCrqxQ==","secondaryReadonlyMasterKey":"VBnb77k4n8GaPZxWfHvGwKYrnNjSghGh0W3Ww8ShWNQEmg6EwYs5hqV9LDR81sAjV6KtxqS6cZ97A6v4QPwJLQ=="}' + string: '{"primaryMasterKey":"EU06Q7RsvPjzCnNyaIbX2jPKRjrbtdMqJXPSHhbII9eCHbgTH7swlAPD6jBTSrHORXFS7KBsaaZZtLecihxGVw==","secondaryMasterKey":"DtPaGKU98M3NnQJAkh52tg3HIPM6Bd79MCCKOuPQcqIUQVpwp6Sdrp2YVg8Eh4L4IM5OBmPfghII5Z3fCDTr1A==","primaryReadonlyMasterKey":"ajwjyYRM2fQZbcIgwNdNWLnXQKjEVyBL4ogvs2xE6sjhQQyV2c9GOm4HWapc1KpnXr5RhoRp9lzYx2cLcyMzdQ==","secondaryReadonlyMasterKey":"ZQ9qUEkhbqVVbxO8ZLsr84AKuAEMnnZgretBRxv2V0yB65la2AiZptpQLg7B108lkuwhzCm7T1R2ym8Co7OecA=="}' headers: cache-control: - no-store, no-cache @@ -990,7 +1823,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:54 GMT + - Thu, 18 Jun 2020 20:57:51 GMT pragma: - no-cache server: @@ -1004,7 +1837,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1024,31 +1857,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountaecoxjaflr7blkiyjvtofl2vr5wo6ozsru6ij6eep6awj6iva3/providers/Microsoft.DocumentDB/databaseAccounts/climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvvxowddkwhlznz6qd5azyx3nlsdjtxqdjetkejiq2t6fay6whz/providers/Microsoft.DocumentDB/databaseAccounts/cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:55 GMT + - Thu, 18 Jun 2020 20:57:53 GMT pragma: - no-cache server: @@ -1062,7 +1895,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1082,15 +1915,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listKeys?api-version=2020-04-01 response: body: - string: '{"primaryMasterKey":"oOSF8XgUv7hbQwOVjgGYwEvPj1BYvdzTy9rbouJoJMpaxGEZ8Am6WkfOtnFre4bTXZNB3GUypST4BLckGkMtIA==","secondaryMasterKey":"HBxIVg11XpKIdDIb0f9jItU9P7DxWIsPRDbDiMKxeuY4PIZPHTSenKEiPSNJifP61nklMcLIf0nRPqxZaug6EQ==","primaryReadonlyMasterKey":"09TBcGSTsZHOpM68yh4FYwUn4U2OhVSoNcqDtsjxfc0WZDz6jxgLDf1aq8vE9c628iGMpnUsyhq4h6o6GCrqxQ==","secondaryReadonlyMasterKey":"VBnb77k4n8GaPZxWfHvGwKYrnNjSghGh0W3Ww8ShWNQEmg6EwYs5hqV9LDR81sAjV6KtxqS6cZ97A6v4QPwJLQ=="}' + string: '{"primaryMasterKey":"EU06Q7RsvPjzCnNyaIbX2jPKRjrbtdMqJXPSHhbII9eCHbgTH7swlAPD6jBTSrHORXFS7KBsaaZZtLecihxGVw==","secondaryMasterKey":"DtPaGKU98M3NnQJAkh52tg3HIPM6Bd79MCCKOuPQcqIUQVpwp6Sdrp2YVg8Eh4L4IM5OBmPfghII5Z3fCDTr1A==","primaryReadonlyMasterKey":"ajwjyYRM2fQZbcIgwNdNWLnXQKjEVyBL4ogvs2xE6sjhQQyV2c9GOm4HWapc1KpnXr5RhoRp9lzYx2cLcyMzdQ==","secondaryReadonlyMasterKey":"ZQ9qUEkhbqVVbxO8ZLsr84AKuAEMnnZgretBRxv2V0yB65la2AiZptpQLg7B108lkuwhzCm7T1R2ym8Co7OecA=="}' headers: cache-control: - no-store, no-cache @@ -1099,7 +1932,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:57 GMT + - Thu, 18 Jun 2020 20:57:54 GMT pragma: - no-cache server: @@ -1113,9 +1946,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: Ok @@ -1133,31 +1966,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1948' + - '2082' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountaecoxjaflr7blkiyjvtofl2vr5wo6ozsru6ij6eep6awj6iva3/providers/Microsoft.DocumentDB/databaseAccounts/climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountvvxowddkwhlznz6qd5azyx3nlsdjtxqdjetkejiq2t6fay6whz/providers/Microsoft.DocumentDB/databaseAccounts/cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:57 GMT + - Thu, 18 Jun 2020 20:57:55 GMT pragma: - no-cache server: @@ -1171,7 +2004,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1189,11 +2022,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:29:58 GMT + - Thu, 18 Jun 2020 20:57:55 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1206,16 +2039,16 @@ interactions: body: string: '{"_self":"","id":"cli000002","_rid":"cli000002.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000002-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000002-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000002-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v.documents.azure.com/ + - https://cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:57 GMT + - Thu, 18 Jun 2020 20:57:56 GMT pragma: - no-cache server: @@ -1231,7 +2064,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1253,11 +2086,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:29:58 GMT + - Thu, 18 Jun 2020 20:57:56 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1271,13 +2104,13 @@ interactions: cache-control: - no-store, no-cache content-location: - - https://climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v-westus.documents.azure.com/dbs + - https://cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q-westus.documents.azure.com/dbs content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:58 GMT + - Thu, 18 Jun 2020 20:57:56 GMT lsn: - - '3' + - '5' pragma: - no-cache server: @@ -1287,17 +2120,17 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 69ea8ed7-f895-45c3-af43-843691c693bd + - d9a9a65f-aa3f-4fb7-ab72-4507e1d7c5c5 x-ms-cosmos-llsn: - - '3' + - '5' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '3' + - '5' x-ms-item-count: - '0' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 22:35:37.803 GMT + - Thu, 18 Jun 2020 13:50:20.972 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -1309,11 +2142,11 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#3 + - 0:-1#5 x-ms-transport-request-id: - - '10663' + - '55074' x-ms-xp-role: - '2' status: @@ -1333,11 +2166,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:29:58 GMT + - Thu, 18 Jun 2020 20:57:56 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1350,16 +2183,16 @@ interactions: body: string: '{"_self":"","id":"cli000002","_rid":"cli000002.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000002-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000002-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000002-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v.documents.azure.com/ + - https://cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:58 GMT + - Thu, 18 Jun 2020 20:57:56 GMT pragma: - no-cache server: @@ -1375,7 +2208,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1397,11 +2230,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:29:59 GMT + - Thu, 18 Jun 2020 20:57:56 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1415,13 +2248,13 @@ interactions: cache-control: - no-store, no-cache content-location: - - https://climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v-westus.documents.azure.com/dbs + - https://cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q-westus.documents.azure.com/dbs content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:58 GMT + - Thu, 18 Jun 2020 20:57:56 GMT lsn: - - '3' + - '5' pragma: - no-cache server: @@ -1431,17 +2264,17 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - fdae5391-1313-4154-be25-7fb15f2352c7 + - 07a91f61-5c7e-448c-905e-fbfed1e349bd x-ms-cosmos-llsn: - - '3' + - '5' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '3' + - '5' x-ms-item-count: - '0' x-ms-last-state-change-utc: - - Wed, 11 Dec 2019 00:17:18.221 GMT + - Thu, 18 Jun 2020 13:50:20.972 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -1453,13 +2286,13 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#3 + - 0:-1#5 x-ms-transport-request-id: - - '9246' + - '57396' x-ms-xp-role: - - '1' + - '2' status: code: 200 message: Ok @@ -1477,11 +2310,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:29:59 GMT + - Thu, 18 Jun 2020 20:57:57 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-session-token: @@ -1494,16 +2327,16 @@ interactions: body: string: '{"_self":"","id":"cli000002","_rid":"cli000002.documents.azure.com","media":"//media/","addresses":"//addresses/","_dbs":"//dbs/","writableLocations":[{"name":"West US","databaseAccountEndpoint":"https://cli000002-westus.documents.azure.com:443/"}],"readableLocations":[{"name":"West - US","databaseAccountEndpoint":"https://cli000002-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' + US","databaseAccountEndpoint":"https://cli000002-westus.documents.azure.com:443/"}],"enableMultipleWriteLocations":false,"userReplicationPolicy":{"asyncReplication":false,"minReplicaSetSize":3,"maxReplicasetSize":4},"userConsistencyPolicy":{"defaultConsistencyLevel":"Session"},"systemReplicationPolicy":{"minReplicaSetSize":3,"maxReplicasetSize":4},"readPolicy":{"primaryReadCoefficient":1,"secondaryReadCoefficient":1},"queryEngineConfiguration":"{\"maxSqlQueryInputLength\":262144,\"maxJoinsPerSqlQuery\":5,\"maxLogicalAndPerSqlQuery\":500,\"maxLogicalOrPerSqlQuery\":500,\"maxUdfRefPerSqlQuery\":10,\"maxInExpressionItemsCount\":16000,\"queryMaxInMemorySortDocumentCount\":500,\"maxQueryRequestTimeoutFraction\":0.9,\"sqlAllowNonFiniteNumbers\":false,\"sqlAllowAggregateFunctions\":true,\"sqlAllowSubQuery\":true,\"sqlAllowScalarSubQuery\":true,\"allowNewKeywords\":true,\"sqlAllowLike\":false,\"sqlAllowGroupByClause\":true,\"maxSpatialQueryCells\":12,\"spatialMaxGeometryPointCount\":256,\"sqlDisableQueryILOptimization\":false,\"sqlAllowTop\":true,\"enableSpatialIndexing\":true}"}' headers: cache-control: - no-store, no-cache content-location: - - https://climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v.documents.azure.com/ + - https://cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q.documents.azure.com/ content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:59 GMT + - Thu, 18 Jun 2020 20:57:57 GMT pragma: - no-cache server: @@ -1519,7 +2352,7 @@ interactions: x-ms-databaseaccount-reserved-mb: - '0' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-max-media-storage-usage-mb: - '2048' x-ms-media-storage-usage-mb: @@ -1541,11 +2374,11 @@ interactions: Content-Length: - '0' User-Agent: - - Windows/10 Python/3.7.0 azure-cosmos/3.1.0 AZURECLI/2.0.76 + - Windows/10 Python/3.8.2 azure-cosmos/3.1.0 AZURECLI/2.7.0 x-ms-consistency-level: - Session x-ms-date: - - Wed, 11 Dec 2019 01:29:59 GMT + - Thu, 18 Jun 2020 20:57:58 GMT x-ms-documentdb-query-iscontinuationexpected: - 'False' x-ms-version: @@ -1559,13 +2392,13 @@ interactions: cache-control: - no-store, no-cache content-location: - - https://climz7yqp3hrhbes4r74c7f3fcwmimxlgz7yoz2v-westus.documents.azure.com/dbs + - https://cliaoh6a35zz7tpxhahx4c3wkxz3prlh2mxbmn5q-westus.documents.azure.com/dbs content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:59 GMT + - Thu, 18 Jun 2020 20:57:57 GMT lsn: - - '3' + - '5' pragma: - no-cache server: @@ -1575,17 +2408,17 @@ interactions: transfer-encoding: - chunked x-ms-activity-id: - - 1d056649-568c-419b-98fd-be689d7e5791 + - 595f70a2-691c-4d5e-ad36-b185e4e78eca x-ms-cosmos-llsn: - - '3' + - '5' x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-global-committed-lsn: - - '3' + - '5' x-ms-item-count: - '0' x-ms-last-state-change-utc: - - Tue, 10 Dec 2019 22:35:37.803 GMT + - Thu, 18 Jun 2020 19:05:40.629 GMT x-ms-number-of-read-regions: - '0' x-ms-request-charge: @@ -1597,13 +2430,13 @@ interactions: x-ms-schemaversion: - '1.9' x-ms-serviceversion: - - version=2.7.0.0 + - version=2.11.0.0 x-ms-session-token: - - 0:-1#3 + - 0:-1#5 x-ms-transport-request-id: - - '11761' + - '56877' x-ms-xp-role: - - '2' + - '1' status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_locations_both_formats_database_accounts.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_locations_both_formats_database_accounts.yaml index f2c578e56da..03a9cee9c08 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_locations_both_formats_database_accounts.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_locations_both_formats_database_accounts.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:21:36Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:46:11Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:21:37 GMT + - Thu, 18 Jun 2020 20:46:12 GMT expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "eastus", "failoverPriority": 0, "isZoneRedundant": false}, {"locationName": "westus", "failoverPriority": 1, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -59,41 +59,41 @@ interactions: Connection: - keep-alive Content-Length: - - '275' + - '296' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-eastus","locationName":"East - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-eastus","locationName":"East - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1559' + - '1677' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountvq7x32zuobqqvea2m5k66qlqcdg6cvmqvg4d7luchulos2bkvb/providers/Microsoft.DocumentDB/databaseAccounts/cli347tgb7ed3x4atnthl4hviyhvbehf4xdlebk3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountddekwsexxwcc2ieygellhoooc67hvcj47wnnwiuge4kn2vd3i2/providers/Microsoft.DocumentDB/databaseAccounts/cliejlhqllzx3jlgcpl2jzki7pjzxz5qmsiy4vdb?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:21:40 GMT + - Thu, 18 Jun 2020 20:46:21 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 pragma: - no-cache server: @@ -107,9 +107,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: Ok @@ -127,24 +127,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:10 GMT + - Thu, 18 Jun 2020 20:46:52 GMT pragma: - no-cache server: @@ -158,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -176,24 +176,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:41 GMT + - Thu, 18 Jun 2020 20:47:22 GMT pragma: - no-cache server: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -225,24 +225,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:12 GMT + - Thu, 18 Jun 2020 20:47:52 GMT pragma: - no-cache server: @@ -256,7 +256,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -274,24 +274,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:42 GMT + - Thu, 18 Jun 2020 20:48:23 GMT pragma: - no-cache server: @@ -305,7 +305,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -323,24 +323,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:13 GMT + - Thu, 18 Jun 2020 20:48:53 GMT pragma: - no-cache server: @@ -354,7 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -372,24 +372,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:43 GMT + - Thu, 18 Jun 2020 20:49:23 GMT pragma: - no-cache server: @@ -403,7 +403,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -421,24 +421,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:13 GMT + - Thu, 18 Jun 2020 20:49:55 GMT pragma: - no-cache server: @@ -452,7 +452,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -470,24 +470,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:43 GMT + - Thu, 18 Jun 2020 20:50:25 GMT pragma: - no-cache server: @@ -501,7 +501,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -519,24 +519,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:14 GMT + - Thu, 18 Jun 2020 20:50:55 GMT pragma: - no-cache server: @@ -550,7 +550,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -568,24 +568,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:44 GMT + - Thu, 18 Jun 2020 20:51:25 GMT pragma: - no-cache server: @@ -599,7 +599,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -617,24 +617,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:15 GMT + - Thu, 18 Jun 2020 20:51:56 GMT pragma: - no-cache server: @@ -648,7 +648,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -666,24 +666,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:45 GMT + - Thu, 18 Jun 2020 20:52:26 GMT pragma: - no-cache server: @@ -697,7 +697,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -715,24 +715,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:16 GMT + - Thu, 18 Jun 2020 20:52:57 GMT pragma: - no-cache server: @@ -746,7 +746,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -764,24 +764,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:46 GMT + - Thu, 18 Jun 2020 20:53:27 GMT pragma: - no-cache server: @@ -795,7 +795,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -813,24 +813,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:17 GMT + - Thu, 18 Jun 2020 20:53:58 GMT pragma: - no-cache server: @@ -844,7 +844,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -862,24 +862,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:47 GMT + - Thu, 18 Jun 2020 20:54:28 GMT pragma: - no-cache server: @@ -893,7 +893,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -911,24 +911,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:30:17 GMT + - Thu, 18 Jun 2020 20:54:58 GMT pragma: - no-cache server: @@ -942,7 +942,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -960,24 +960,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:30:48 GMT + - Thu, 18 Jun 2020 20:55:28 GMT pragma: - no-cache server: @@ -991,7 +991,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1009,24 +1009,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:31:17 GMT + - Thu, 18 Jun 2020 20:56:00 GMT pragma: - no-cache server: @@ -1040,7 +1040,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1058,24 +1058,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:31:48 GMT + - Thu, 18 Jun 2020 20:56:29 GMT pragma: - no-cache server: @@ -1089,7 +1089,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1107,24 +1107,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:32:18 GMT + - Thu, 18 Jun 2020 20:57:00 GMT pragma: - no-cache server: @@ -1138,7 +1138,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1156,24 +1156,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:32:50 GMT + - Thu, 18 Jun 2020 20:57:31 GMT pragma: - no-cache server: @@ -1187,7 +1187,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1205,24 +1205,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:33:20 GMT + - Thu, 18 Jun 2020 20:58:01 GMT pragma: - no-cache server: @@ -1236,7 +1236,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1254,24 +1254,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:33:51 GMT + - Thu, 18 Jun 2020 20:58:31 GMT pragma: - no-cache server: @@ -1285,7 +1285,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1303,24 +1303,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:21 GMT + - Thu, 18 Jun 2020 20:59:02 GMT pragma: - no-cache server: @@ -1334,7 +1334,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1352,24 +1352,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:51 GMT + - Thu, 18 Jun 2020 20:59:32 GMT pragma: - no-cache server: @@ -1383,7 +1383,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1401,24 +1401,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:35:22 GMT + - Thu, 18 Jun 2020 21:00:02 GMT pragma: - no-cache server: @@ -1432,7 +1432,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1450,24 +1450,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/1ca410b5-59ee-4455-945a-cb9da627ab9d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:35:52 GMT + - Thu, 18 Jun 2020 21:00:32 GMT pragma: - no-cache server: @@ -1481,7 +1481,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1499,31 +1499,1501 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:01:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:01:33 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:02:03 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:02:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:03:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:03:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:04:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:04:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:05:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:05:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:06:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:06:37 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:07:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:07:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:08:09 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:08:39 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:09:10 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:09:40 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:10:11 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:10:42 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:11:12 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:11:42 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:12:12 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:12:43 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:13:13 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:13:44 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:14:16 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:14:46 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:15:16 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/384de749-b71a-40b6-bedf-7398b4bdc8a1?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:15:48 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"locations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-eastus","locationName":"East - US","failoverPriority":0},{"id":"cli000002-westus","locationName":"West US","failoverPriority":1}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0},{"id":"cli000002-westus","locationName":"West US","failoverPriority":1}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2573' + - '2707' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountvq7x32zuobqqvea2m5k66qlqcdg6cvmqvg4d7luchulos2bkvb/providers/Microsoft.DocumentDB/databaseAccounts/cli347tgb7ed3x4atnthl4hviyhvbehf4xdlebk3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountddekwsexxwcc2ieygellhoooc67hvcj47wnnwiuge4kn2vd3i2/providers/Microsoft.DocumentDB/databaseAccounts/cliejlhqllzx3jlgcpl2jzki7pjzxz5qmsiy4vdb?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:35:52 GMT + - Thu, 18 Jun 2020 21:15:48 GMT pragma: - no-cache server: @@ -1537,7 +3007,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1555,33 +3025,33 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"locations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-eastus","locationName":"East - US","failoverPriority":0},{"id":"cli000002-westus","locationName":"West US","failoverPriority":1}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0},{"id":"cli000002-westus","locationName":"West US","failoverPriority":1}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2573' + - '2707' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountvq7x32zuobqqvea2m5k66qlqcdg6cvmqvg4d7luchulos2bkvb/providers/Microsoft.DocumentDB/databaseAccounts/cli347tgb7ed3x4atnthl4hviyhvbehf4xdlebk3?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountddekwsexxwcc2ieygellhoooc67hvcj47wnnwiuge4kn2vd3i2/providers/Microsoft.DocumentDB/databaseAccounts/cliejlhqllzx3jlgcpl2jzki7pjzxz5qmsiy4vdb?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:35:52 GMT + - Thu, 18 Jun 2020 21:15:48 GMT pragma: - no-cache server: @@ -1595,7 +3065,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_locations_database_accounts.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_locations_database_accounts.yaml index 167fefa8c1f..55e5dd472fa 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_locations_database_accounts.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_locations_database_accounts.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:22:30Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-06-18T20:47:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:22:31 GMT + - Thu, 18 Jun 2020 20:47:01 GMT expires: - '-1' pragma: @@ -48,7 +48,7 @@ interactions: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "eastus", "failoverPriority": 0, "isZoneRedundant": false}, {"locationName": "westus", "failoverPriority": 1, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -59,41 +59,41 @@ interactions: Connection: - keep-alive Content-Length: - - '275' + - '296' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-eastus","locationName":"East - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-eastus","locationName":"East - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-eastus","locationName":"East - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-eastus","locationName":"East + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-eastus","locationName":"East + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1559' + - '1677' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountgvtxvijkx7xgdinfkyjvzfylkdy7rwdxptojh434dpy3dy6iye/providers/Microsoft.DocumentDB/databaseAccounts/cli5ikwpa336trgw7jzqlmfw4f5rlwffw23gvehy?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountq3odhaho2uuk4hljkn4wzcl6tizci3rkvk75ginkyptko2qnmv/providers/Microsoft.DocumentDB/databaseAccounts/cliaz5gl2ahcpjdzqvvpjvdra26jd4gwvyo5iiim?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:22:33 GMT + - Thu, 18 Jun 2020 20:47:11 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 pragma: - no-cache server: @@ -107,9 +107,9 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: Ok @@ -127,24 +127,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:03 GMT + - Thu, 18 Jun 2020 20:47:41 GMT pragma: - no-cache server: @@ -158,7 +158,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -176,24 +176,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:23:34 GMT + - Thu, 18 Jun 2020 20:48:12 GMT pragma: - no-cache server: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -225,24 +225,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:04 GMT + - Thu, 18 Jun 2020 20:48:42 GMT pragma: - no-cache server: @@ -256,7 +256,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -274,24 +274,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:24:35 GMT + - Thu, 18 Jun 2020 20:49:13 GMT pragma: - no-cache server: @@ -305,7 +305,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -323,24 +323,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:05 GMT + - Thu, 18 Jun 2020 20:49:43 GMT pragma: - no-cache server: @@ -354,7 +354,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -372,24 +372,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:25:36 GMT + - Thu, 18 Jun 2020 20:50:13 GMT pragma: - no-cache server: @@ -403,7 +403,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -421,24 +421,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:06 GMT + - Thu, 18 Jun 2020 20:50:44 GMT pragma: - no-cache server: @@ -452,7 +452,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -470,24 +470,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:26:36 GMT + - Thu, 18 Jun 2020 20:51:15 GMT pragma: - no-cache server: @@ -501,7 +501,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -519,24 +519,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:07 GMT + - Thu, 18 Jun 2020 20:51:45 GMT pragma: - no-cache server: @@ -550,7 +550,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -568,24 +568,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:27:37 GMT + - Thu, 18 Jun 2020 20:52:15 GMT pragma: - no-cache server: @@ -599,7 +599,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -617,24 +617,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:08 GMT + - Thu, 18 Jun 2020 20:52:45 GMT pragma: - no-cache server: @@ -648,7 +648,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -666,24 +666,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:28:38 GMT + - Thu, 18 Jun 2020 20:53:16 GMT pragma: - no-cache server: @@ -697,7 +697,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -715,24 +715,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:09 GMT + - Thu, 18 Jun 2020 20:53:46 GMT pragma: - no-cache server: @@ -746,7 +746,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -764,24 +764,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:40 GMT + - Thu, 18 Jun 2020 20:54:17 GMT pragma: - no-cache server: @@ -795,7 +795,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -813,24 +813,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:30:10 GMT + - Thu, 18 Jun 2020 20:54:47 GMT pragma: - no-cache server: @@ -844,7 +844,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -862,24 +862,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:30:40 GMT + - Thu, 18 Jun 2020 20:55:17 GMT pragma: - no-cache server: @@ -893,7 +893,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -911,24 +911,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:31:11 GMT + - Thu, 18 Jun 2020 20:55:48 GMT pragma: - no-cache server: @@ -942,7 +942,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -960,24 +960,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:31:41 GMT + - Thu, 18 Jun 2020 20:56:18 GMT pragma: - no-cache server: @@ -991,7 +991,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1009,24 +1009,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:32:11 GMT + - Thu, 18 Jun 2020 20:56:48 GMT pragma: - no-cache server: @@ -1040,7 +1040,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1058,24 +1058,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:32:41 GMT + - Thu, 18 Jun 2020 20:57:18 GMT pragma: - no-cache server: @@ -1089,7 +1089,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1107,24 +1107,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:33:13 GMT + - Thu, 18 Jun 2020 20:57:50 GMT pragma: - no-cache server: @@ -1138,7 +1138,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1156,24 +1156,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:33:43 GMT + - Thu, 18 Jun 2020 20:58:20 GMT pragma: - no-cache server: @@ -1187,7 +1187,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1205,24 +1205,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:13 GMT + - Thu, 18 Jun 2020 20:58:50 GMT pragma: - no-cache server: @@ -1236,7 +1236,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1254,24 +1254,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:44 GMT + - Thu, 18 Jun 2020 20:59:21 GMT pragma: - no-cache server: @@ -1285,7 +1285,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1303,24 +1303,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:35:14 GMT + - Thu, 18 Jun 2020 20:59:51 GMT pragma: - no-cache server: @@ -1334,7 +1334,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1352,24 +1352,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:35:45 GMT + - Thu, 18 Jun 2020 21:00:22 GMT pragma: - no-cache server: @@ -1383,7 +1383,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1401,24 +1401,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:36:15 GMT + - Thu, 18 Jun 2020 21:00:52 GMT pragma: - no-cache server: @@ -1432,7 +1432,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1450,24 +1450,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:36:46 GMT + - Thu, 18 Jun 2020 21:01:23 GMT pragma: - no-cache server: @@ -1481,7 +1481,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1499,24 +1499,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:37:16 GMT + - Thu, 18 Jun 2020 21:01:53 GMT pragma: - no-cache server: @@ -1530,7 +1530,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1548,24 +1548,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:37:47 GMT + - Thu, 18 Jun 2020 21:02:23 GMT pragma: - no-cache server: @@ -1579,7 +1579,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1597,24 +1597,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:38:17 GMT + - Thu, 18 Jun 2020 21:02:54 GMT pragma: - no-cache server: @@ -1628,7 +1628,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1646,24 +1646,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:38:48 GMT + - Thu, 18 Jun 2020 21:03:24 GMT pragma: - no-cache server: @@ -1677,7 +1677,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1695,24 +1695,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:39:19 GMT + - Thu, 18 Jun 2020 21:03:54 GMT pragma: - no-cache server: @@ -1726,7 +1726,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1744,24 +1744,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:39:48 GMT + - Thu, 18 Jun 2020 21:04:25 GMT pragma: - no-cache server: @@ -1775,7 +1775,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1793,24 +1793,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:40:20 GMT + - Thu, 18 Jun 2020 21:04:55 GMT pragma: - no-cache server: @@ -1824,7 +1824,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1842,24 +1842,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:40:50 GMT + - Thu, 18 Jun 2020 21:05:26 GMT pragma: - no-cache server: @@ -1873,7 +1873,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1891,24 +1891,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:41:20 GMT + - Thu, 18 Jun 2020 21:05:57 GMT pragma: - no-cache server: @@ -1922,7 +1922,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1940,24 +1940,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:41:50 GMT + - Thu, 18 Jun 2020 21:06:27 GMT pragma: - no-cache server: @@ -1971,7 +1971,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1989,24 +1989,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:42:21 GMT + - Thu, 18 Jun 2020 21:06:57 GMT pragma: - no-cache server: @@ -2020,7 +2020,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2038,24 +2038,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:42:52 GMT + - Thu, 18 Jun 2020 21:07:27 GMT pragma: - no-cache server: @@ -2069,7 +2069,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2087,24 +2087,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:43:22 GMT + - Thu, 18 Jun 2020 21:07:58 GMT pragma: - no-cache server: @@ -2118,7 +2118,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2136,24 +2136,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:43:52 GMT + - Thu, 18 Jun 2020 21:08:28 GMT pragma: - no-cache server: @@ -2167,7 +2167,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2185,24 +2185,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:44:23 GMT + - Thu, 18 Jun 2020 21:08:59 GMT pragma: - no-cache server: @@ -2216,7 +2216,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2234,24 +2234,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:44:53 GMT + - Thu, 18 Jun 2020 21:09:29 GMT pragma: - no-cache server: @@ -2265,7 +2265,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2283,24 +2283,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:45:24 GMT + - Thu, 18 Jun 2020 21:09:59 GMT pragma: - no-cache server: @@ -2314,7 +2314,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2332,24 +2332,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:45:54 GMT + - Thu, 18 Jun 2020 21:10:29 GMT pragma: - no-cache server: @@ -2363,7 +2363,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2381,24 +2381,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:46:24 GMT + - Thu, 18 Jun 2020 21:10:59 GMT pragma: - no-cache server: @@ -2412,7 +2412,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2430,24 +2430,24 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/bbacc508-efe2-45a3-ba5d-c065aa810c30?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:46:54 GMT + - Thu, 18 Jun 2020 21:11:30 GMT pragma: - no-cache server: @@ -2461,7 +2461,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2479,31 +2479,227 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:12:01 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:12:31 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:13:02 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '22' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c06d95c2-6b66-491f-bfcc-93974e4fdd86?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:13:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --locations --locations + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"locations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-eastus","locationName":"East - US","failoverPriority":0},{"id":"cli000002-westus","locationName":"West US","failoverPriority":1}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0},{"id":"cli000002-westus","locationName":"West US","failoverPriority":1}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2573' + - '2707' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountgvtxvijkx7xgdinfkyjvzfylkdy7rwdxptojh434dpy3dy6iye/providers/Microsoft.DocumentDB/databaseAccounts/cli5ikwpa336trgw7jzqlmfw4f5rlwffw23gvehy?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountq3odhaho2uuk4hljkn4wzcl6tizci3rkvk75ginkyptko2qnmv/providers/Microsoft.DocumentDB/databaseAccounts/cliaz5gl2ahcpjdzqvvpjvdra26jd4gwvyo5iiim?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:46:55 GMT + - Thu, 18 Jun 2020 21:13:32 GMT pragma: - no-cache server: @@ -2517,7 +2713,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2535,33 +2731,33 @@ interactions: ParameterSetName: - -n -g --locations --locations User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"locations":[{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-eastus","locationName":"East - US","failoverPriority":0},{"id":"cli000002-westus","locationName":"West US","failoverPriority":1}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0},{"id":"cli000002-westus","locationName":"West US","failoverPriority":1}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2573' + - '2707' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountgvtxvijkx7xgdinfkyjvzfylkdy7rwdxptojh434dpy3dy6iye/providers/Microsoft.DocumentDB/databaseAccounts/cli5ikwpa336trgw7jzqlmfw4f5rlwffw23gvehy?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountq3odhaho2uuk4hljkn4wzcl6tizci3rkvk75ginkyptko2qnmv/providers/Microsoft.DocumentDB/databaseAccounts/cliaz5gl2ahcpjdzqvvpjvdra26jd4gwvyo5iiim?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:46:55 GMT + - Thu, 18 Jun 2020 21:13:32 GMT pragma: - no-cache server: @@ -2575,7 +2771,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2598,28 +2794,28 @@ interactions: ParameterSetName: - -n -g --failover-policies User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/failoverPriorityChange?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/failoverPriorityChange?api-version=2020-04-01 response: body: - string: '{"status":"Enqueued","error":{}}' + string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-type: - application/json date: - - Wed, 11 Dec 2019 01:46:58 GMT + - Thu, 18 Jun 2020 21:13:36 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/failoverPriorityChange/operationResults/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/failoverPriorityChange/operationResults/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 pragma: - no-cache server: @@ -2629,7 +2825,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -2649,24 +2845,73 @@ interactions: ParameterSetName: - -n -g --failover-policies User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 + content-type: + - application/json + date: + - Thu, 18 Jun 2020 21:14:08 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb failover-priority-change + Connection: + - keep-alive + ParameterSetName: + - -n -g --failover-policies + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:47:29 GMT + - Thu, 18 Jun 2020 21:14:38 GMT pragma: - no-cache server: @@ -2680,7 +2925,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2698,24 +2943,24 @@ interactions: ParameterSetName: - -n -g --failover-policies User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:47:59 GMT + - Thu, 18 Jun 2020 21:15:08 GMT pragma: - no-cache server: @@ -2729,7 +2974,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2747,24 +2992,24 @@ interactions: ParameterSetName: - -n -g --failover-policies User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:48:29 GMT + - Thu, 18 Jun 2020 21:15:38 GMT pragma: - no-cache server: @@ -2778,7 +3023,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2796,24 +3041,24 @@ interactions: ParameterSetName: - -n -g --failover-policies User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:49:00 GMT + - Thu, 18 Jun 2020 21:16:09 GMT pragma: - no-cache server: @@ -2827,7 +3072,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2845,24 +3090,24 @@ interactions: ParameterSetName: - -n -g --failover-policies User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/5259cef7-27cf-4eb3-afe3-7508e11cdf3d?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/93e0b135-c629-4f22-9218-839f6c006b96?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:49:29 GMT + - Thu, 18 Jun 2020 21:16:39 GMT pragma: - no-cache server: @@ -2876,7 +3121,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -2894,33 +3139,33 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.7.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false},{"id":"cli000002-eastus","locationName":"East US","documentEndpoint":"https://cli000002-eastus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":1,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0},{"id":"cli000002-eastus","locationName":"East US","failoverPriority":1}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0},{"id":"cli000002-eastus","locationName":"East US","failoverPriority":1}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '2573' + - '2707' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountgvtxvijkx7xgdinfkyjvzfylkdy7rwdxptojh434dpy3dy6iye/providers/Microsoft.DocumentDB/databaseAccounts/cli5ikwpa336trgw7jzqlmfw4f5rlwffw23gvehy?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountq3odhaho2uuk4hljkn4wzcl6tizci3rkvk75ginkyptko2qnmv/providers/Microsoft.DocumentDB/databaseAccounts/cliaz5gl2ahcpjdzqvvpjvdra26jd4gwvyo5iiim?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:49:31 GMT + - Thu, 18 Jun 2020 21:16:40 GMT pragma: - no-cache server: @@ -2934,7 +3179,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_update_database_account.yaml b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_update_database_account.yaml index b28ced84f7e..a7adc5adc8d 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_update_database_account.yaml +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/recordings/test_update_database_account.yaml @@ -11,17 +11,18 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-resource/4.0.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_account000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2019-12-11T01:29:00Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001","name":"cli_test_cosmosdb_account000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T07:17:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 Dec 2019 01:29:01 GMT + - Tue, 07 Jul 2020 07:17:38 GMT expires: - '-1' pragma: @@ -47,7 +48,9 @@ interactions: - request: body: '{"location": "westus", "kind": "MongoDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], "databaseAccountOfferType": - "Standard", "ipRangeFilter": "10.10.10.10"}}' + "Standard", "ipRules": [{"ipAddressOrRange": "20.10.10.10"}, {"ipAddressOrRange": + "12.12.122.122"}, {"ipAddressOrRange": "12.22.11.11"}], "enableFreeTier": false, + "apiProperties": {"serverVersion": "3.2"}, "enableAnalyticalStorage": true}}' headers: Accept: - application/json @@ -58,41 +61,42 @@ interactions: Connection: - keep-alive Content-Length: - - '221' + - '416' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Initializing","ipRangeFilter":"10.10.10.10","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West - US","provisioningState":"Initializing","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-07-07T07:17:46.0059473Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"ec60d5e0-e3e3-42bd-9141-a6435089a88c","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[{"ipAddressOrRange":"20.10.10.10"},{"ipAddressOrRange":"12.12.122.122"},{"ipAddressOrRange":"12.22.11.11"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1565' + - '1927' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountqc6nvkqkazlmodr3dmh4u66uvlhekzquappjhtny2vozvi6b3g/providers/Microsoft.DocumentDB/databaseAccounts/cli6zboqdbjuztql6go24z7vruuv3lrdfd2mkekm?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountheh7fdaogpxbp7wvnpedxqm6dg4k4ziy2djhmnq5zsizyzqin4/providers/Microsoft.DocumentDB/databaseAccounts/cliveccy2j4aiult6mo5ceboxl4edjxz2gj5rg7w?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:03 GMT + - Tue, 07 Jul 2020 07:17:46 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 pragma: - no-cache server: @@ -106,9 +110,1009 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:18:17 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:18:46 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:19:16 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:19:46 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:20:17 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:20:47 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:21:17 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:21:47 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:22:18 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:22:48 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:23:18 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:23:48 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:24:19 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:24:49 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:25:20 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:25:49 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:26:21 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:26:51 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:27:21 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:27:51 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -124,26 +1128,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:29:33 GMT + - Tue, 07 Jul 2020 07:28:22 GMT pragma: - no-cache server: @@ -157,7 +1162,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -173,26 +1178,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:30:04 GMT + - Tue, 07 Jul 2020 07:28:52 GMT pragma: - no-cache server: @@ -206,7 +1212,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -222,26 +1228,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:30:35 GMT + - Tue, 07 Jul 2020 07:29:22 GMT pragma: - no-cache server: @@ -255,7 +1262,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -271,26 +1278,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:31:05 GMT + - Tue, 07 Jul 2020 07:29:52 GMT pragma: - no-cache server: @@ -304,7 +1312,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -320,26 +1328,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:31:36 GMT + - Tue, 07 Jul 2020 07:30:21 GMT pragma: - no-cache server: @@ -353,7 +1362,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -369,26 +1378,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:32:07 GMT + - Tue, 07 Jul 2020 07:30:52 GMT pragma: - no-cache server: @@ -402,7 +1412,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -418,26 +1428,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:32:37 GMT + - Tue, 07 Jul 2020 07:31:22 GMT pragma: - no-cache server: @@ -451,7 +1462,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -467,26 +1478,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:33:07 GMT + - Tue, 07 Jul 2020 07:31:52 GMT pragma: - no-cache server: @@ -500,7 +1512,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -516,26 +1528,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:33:38 GMT + - Tue, 07 Jul 2020 07:32:22 GMT pragma: - no-cache server: @@ -549,7 +1562,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -565,26 +1578,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:08 GMT + - Tue, 07 Jul 2020 07:32:53 GMT pragma: - no-cache server: @@ -598,7 +1612,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -614,26 +1628,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:34:39 GMT + - Tue, 07 Jul 2020 07:33:23 GMT pragma: - no-cache server: @@ -647,7 +1662,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -663,26 +1678,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:35:09 GMT + - Tue, 07 Jul 2020 07:33:53 GMT pragma: - no-cache server: @@ -696,7 +1712,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -712,26 +1728,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:35:40 GMT + - Tue, 07 Jul 2020 07:34:23 GMT pragma: - no-cache server: @@ -745,7 +1762,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -761,26 +1778,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:36:09 GMT + - Tue, 07 Jul 2020 07:34:54 GMT pragma: - no-cache server: @@ -794,7 +1812,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -810,26 +1828,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:36:40 GMT + - Tue, 07 Jul 2020 07:35:24 GMT pragma: - no-cache server: @@ -843,7 +1862,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -859,26 +1878,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c55623b0-f60f-4b8c-ba2c-e27eb7257114?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/574e0665-1ebf-47f5-a862-dd5a824af7fd?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:37:11 GMT + - Tue, 07 Jul 2020 07:35:54 GMT pragma: - no-cache server: @@ -892,7 +1912,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -908,31 +1928,32 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"10.10.10.10","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-07-07T07:35:40.1439813Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"ec60d5e0-e3e3-42bd-9141-a6435089a88c","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[{"ipAddressOrRange":"20.10.10.10"},{"ipAddressOrRange":"12.12.122.122"},{"ipAddressOrRange":"12.22.11.11"}]}}' headers: cache-control: - no-store, no-cache content-length: - - '1979' + - '2357' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountqc6nvkqkazlmodr3dmh4u66uvlhekzquappjhtny2vozvi6b3g/providers/Microsoft.DocumentDB/databaseAccounts/cli6zboqdbjuztql6go24z7vruuv3lrdfd2mkekm?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountheh7fdaogpxbp7wvnpedxqm6dg4k4ziy2djhmnq5zsizyzqin4/providers/Microsoft.DocumentDB/databaseAccounts/cliveccy2j4aiult6mo5ceboxl4edjxz2gj5rg7w?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:37:11 GMT + - Tue, 07 Jul 2020 07:35:55 GMT pragma: - no-cache server: @@ -946,7 +1967,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -962,33 +1983,34 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --kind --ip-range-filter + - -n -g --kind --ip-range-filter --server-version --enable-analytical-storage + --enable-free-tier User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"10.10.10.10","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-07-07T07:35:40.1439813Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"ec60d5e0-e3e3-42bd-9141-a6435089a88c","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[{"ipAddressOrRange":"20.10.10.10"},{"ipAddressOrRange":"12.12.122.122"},{"ipAddressOrRange":"12.22.11.11"}]}}' headers: cache-control: - no-store, no-cache content-length: - - '1979' + - '2357' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountqc6nvkqkazlmodr3dmh4u66uvlhekzquappjhtny2vozvi6b3g/providers/Microsoft.DocumentDB/databaseAccounts/cli6zboqdbjuztql6go24z7vruuv3lrdfd2mkekm?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountheh7fdaogpxbp7wvnpedxqm6dg4k4ziy2djhmnq5zsizyzqin4/providers/Microsoft.DocumentDB/databaseAccounts/cliveccy2j4aiult6mo5ceboxl4edjxz2gj5rg7w?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:37:11 GMT + - Tue, 07 Jul 2020 07:35:55 GMT pragma: - no-cache server: @@ -1002,7 +2024,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1020,31 +2042,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"10.10.10.10","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-07-07T07:35:40.1439813Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"ec60d5e0-e3e3-42bd-9141-a6435089a88c","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[{"ipAddressOrRange":"20.10.10.10"},{"ipAddressOrRange":"12.12.122.122"},{"ipAddressOrRange":"12.22.11.11"}]}}' headers: cache-control: - no-store, no-cache content-length: - - '1979' + - '2357' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountqc6nvkqkazlmodr3dmh4u66uvlhekzquappjhtny2vozvi6b3g/providers/Microsoft.DocumentDB/databaseAccounts/cli6zboqdbjuztql6go24z7vruuv3lrdfd2mkekm?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountheh7fdaogpxbp7wvnpedxqm6dg4k4ziy2djhmnq5zsizyzqin4/providers/Microsoft.DocumentDB/databaseAccounts/cliveccy2j4aiult6mo5ceboxl4edjxz2gj5rg7w?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:37:12 GMT + - Tue, 07 Jul 2020 07:35:55 GMT pragma: - no-cache server: @@ -1058,7 +2080,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1076,31 +2098,31 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"10.10.10.10","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-07-07T07:35:40.1439813Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"ec60d5e0-e3e3-42bd-9141-a6435089a88c","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[{"ipAddressOrRange":"20.10.10.10"},{"ipAddressOrRange":"12.12.122.122"},{"ipAddressOrRange":"12.22.11.11"}]}}' headers: cache-control: - no-store, no-cache content-length: - - '1979' + - '2357' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountqc6nvkqkazlmodr3dmh4u66uvlhekzquappjhtny2vozvi6b3g/providers/Microsoft.DocumentDB/databaseAccounts/cli6zboqdbjuztql6go24z7vruuv3lrdfd2mkekm?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountheh7fdaogpxbp7wvnpedxqm6dg4k4ziy2djhmnq5zsizyzqin4/providers/Microsoft.DocumentDB/databaseAccounts/cliveccy2j4aiult6mo5ceboxl4edjxz2gj5rg7w?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:37:13 GMT + - Tue, 07 Jul 2020 07:35:56 GMT pragma: - no-cache server: @@ -1114,7 +2136,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1136,35 +2158,35 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"10.10.10.10","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-07-07T07:35:40.1439813Z"},"properties":{"provisioningState":"Updating","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"ec60d5e0-e3e3-42bd-9141-a6435089a88c","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Updating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[{"ipAddressOrRange":"20.10.10.10"},{"ipAddressOrRange":"12.12.122.122"},{"ipAddressOrRange":"12.22.11.11"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7a377682-8913-49d9-a9d5-9bbcb580b4b1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1975' + - '2353' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountqc6nvkqkazlmodr3dmh4u66uvlhekzquappjhtny2vozvi6b3g/providers/Microsoft.DocumentDB/databaseAccounts/cli6zboqdbjuztql6go24z7vruuv3lrdfd2mkekm?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountheh7fdaogpxbp7wvnpedxqm6dg4k4ziy2djhmnq5zsizyzqin4/providers/Microsoft.DocumentDB/databaseAccounts/cliveccy2j4aiult6mo5ceboxl4edjxz2gj5rg7w?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:37:18 GMT + - Tue, 07 Jul 2020 07:36:01 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/7a377682-8913-49d9-a9d5-9bbcb580b4b1?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/operationResults/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 pragma: - no-cache server: @@ -1178,9 +2200,58 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb update + Connection: + - keep-alive + ParameterSetName: + - -n -g --capabilities + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 07:36:32 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 status: code: 200 message: Ok @@ -1198,24 +2269,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7a377682-8913-49d9-a9d5-9bbcb580b4b1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7a377682-8913-49d9-a9d5-9bbcb580b4b1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:37:48 GMT + - Tue, 07 Jul 2020 07:37:02 GMT pragma: - no-cache server: @@ -1229,7 +2300,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1247,24 +2318,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7a377682-8913-49d9-a9d5-9bbcb580b4b1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 response: body: - string: '{"status":"Dequeued","error":{}}' + string: '{"status":"Dequeued"}' headers: cache-control: - no-store, no-cache content-length: - - '32' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7a377682-8913-49d9-a9d5-9bbcb580b4b1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:38:19 GMT + - Tue, 07 Jul 2020 07:37:32 GMT pragma: - no-cache server: @@ -1278,7 +2349,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1296,24 +2367,24 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7a377682-8913-49d9-a9d5-9bbcb580b4b1?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 response: body: - string: '{"status":"Succeeded","error":{}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-store, no-cache content-length: - - '33' + - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/7a377682-8913-49d9-a9d5-9bbcb580b4b1?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2bb44f7b-b655-496c-ab1e-ba0da5f74121?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:38:49 GMT + - Tue, 07 Jul 2020 07:38:02 GMT pragma: - no-cache server: @@ -1327,7 +2398,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1345,29 +2416,29 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"10.10.10.10","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-07-07T07:35:40.1439813Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"ec60d5e0-e3e3-42bd-9141-a6435089a88c","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableAggregationPipeline"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableAggregationPipeline"}],"ipRules":[{"ipAddressOrRange":"20.10.10.10"},{"ipAddressOrRange":"12.12.122.122"},{"ipAddressOrRange":"12.22.11.11"}]}}' headers: cache-control: - no-store, no-cache content-length: - - '2015' + - '2393' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountqc6nvkqkazlmodr3dmh4u66uvlhekzquappjhtny2vozvi6b3g/providers/Microsoft.DocumentDB/databaseAccounts/cli6zboqdbjuztql6go24z7vruuv3lrdfd2mkekm?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountheh7fdaogpxbp7wvnpedxqm6dg4k4ziy2djhmnq5zsizyzqin4/providers/Microsoft.DocumentDB/databaseAccounts/cliveccy2j4aiult6mo5ceboxl4edjxz2gj5rg7w?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:38:49 GMT + - Tue, 07 Jul 2020 07:38:02 GMT pragma: - no-cache server: @@ -1381,7 +2452,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1399,31 +2470,31 @@ interactions: ParameterSetName: - -n -g --capabilities User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"10.10.10.10","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-07-07T07:35:40.1439813Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"ec60d5e0-e3e3-42bd-9141-a6435089a88c","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableAggregationPipeline"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableAggregationPipeline"}],"ipRules":[{"ipAddressOrRange":"20.10.10.10"},{"ipAddressOrRange":"12.12.122.122"},{"ipAddressOrRange":"12.22.11.11"}]}}' headers: cache-control: - no-store, no-cache content-length: - - '2015' + - '2393' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountqc6nvkqkazlmodr3dmh4u66uvlhekzquappjhtny2vozvi6b3g/providers/Microsoft.DocumentDB/databaseAccounts/cli6zboqdbjuztql6go24z7vruuv3lrdfd2mkekm?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountheh7fdaogpxbp7wvnpedxqm6dg4k4ziy2djhmnq5zsizyzqin4/providers/Microsoft.DocumentDB/databaseAccounts/cliveccy2j4aiult6mo5ceboxl4edjxz2gj5rg7w?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:38:50 GMT + - Tue, 07 Jul 2020 07:38:02 GMT pragma: - no-cache server: @@ -1437,7 +2508,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1455,31 +2526,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002","name":"cli000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","ipRangeFilter":"10.10.10.10","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"MongoDB","tags":{},"systemData":{"createdAt":"2020-07-07T07:35:40.1439813Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"MongoDB","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":true,"instanceId":"ec60d5e0-e3e3-42bd-9141-a6435089a88c","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"apiProperties":{"serverVersion":"3.2"},"configurationOverrides":{"EnableBsonSchema":"True"},"writeLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli000002-westus","locationName":"West US","documentEndpoint":"https://cli000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableAggregationPipeline"}]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[{"name":"EnableAggregationPipeline"}],"ipRules":[{"ipAddressOrRange":"20.10.10.10"},{"ipAddressOrRange":"12.12.122.122"},{"ipAddressOrRange":"12.22.11.11"}]}}' headers: cache-control: - no-store, no-cache content-length: - - '2015' + - '2393' content-location: - - https://management.documents.azure.com:450/subscriptions/3901edbf-e5b3-4040-a565-13784a96c238/resourceGroups/cli_test_cosmosdb_accountqc6nvkqkazlmodr3dmh4u66uvlhekzquappjhtny2vozvi6b3g/providers/Microsoft.DocumentDB/databaseAccounts/cli6zboqdbjuztql6go24z7vruuv3lrdfd2mkekm?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_accountheh7fdaogpxbp7wvnpedxqm6dg4k4ziy2djhmnq5zsizyzqin4/providers/Microsoft.DocumentDB/databaseAccounts/cliveccy2j4aiult6mo5ceboxl4edjxz2gj5rg7w?api-version=2020-04-01 content-type: - application/json date: - - Wed, 11 Dec 2019 01:38:50 GMT + - Tue, 07 Jul 2020 07:38:03 GMT pragma: - no-cache server: @@ -1493,7 +2564,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 status: code: 200 message: Ok @@ -1513,18 +2584,18 @@ interactions: ParameterSetName: - --type -n -g User-Agent: - - python/3.7.0 (Windows-10-10.0.18362-SP0) msrest/0.6.7 msrest_azure/0.6.2 azure-mgmt-cosmosdb/0.11.0 - Azure-SDK-For-Python AZURECLI/2.0.76 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listConnectionStrings?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_account000001/providers/Microsoft.DocumentDB/databaseAccounts/cli000002/listConnectionStrings?api-version=2020-04-01 response: body: - string: '{"connectionStrings":[{"connectionString":"mongodb://cli000002:TWhuxim5QY7Empw3GXICyoODiPGGCXHxKdybTCSjPVfcqGrwm1RsU0c0MmvzCOSZyWq055FvlF0m2vRS6QF9XQ==@cli000002.documents.azure.com:10255/?ssl=true&replicaSet=globaldb","description":"Primary - MongoDB Connection String"},{"connectionString":"mongodb://cli000002:hK9oCzAOKuH5Ko0vj9Tprh9mH1rCEKoOgFQiDzI024crhcKhPKjReZoFq8ImtPoSYDUVUg5xnNEHLRBomFWjKQ==@cli000002.documents.azure.com:10255/?ssl=true&replicaSet=globaldb","description":"Secondary - MongoDB Connection String"},{"connectionString":"mongodb://cli000002:Kx3GaN8jGn48HZgzuQdpUzdUpj9RnU6aRc0P2wTqfQ26hSfIFYKAdVYhGmty5aiYE5R59R8r896p6HDaE6ft3g==@cli000002.documents.azure.com:10255/?ssl=true&replicaSet=globaldb","description":"Primary - Read-Only MongoDB Connection String"},{"connectionString":"mongodb://cli000002:0582QbLYR2lXwhzQn2esa00ZrmMvMtjGXJcT0VjoKKwTqJoGgfeZHngKx23uOrFYPzJoTVbcgeL6SRbLcuYDvw==@cli000002.documents.azure.com:10255/?ssl=true&replicaSet=globaldb","description":"Secondary + string: '{"connectionStrings":[{"connectionString":"mongodb://cli000002:sDfj2W5qEwuYVa1ciEr9d4XnGC1Ncw1Q5ft9pLiW7lyJUOzE5tDLCTLrG0hwkE6wuPEGjjOlDkFVsyI4Ws3kmA==@cli000002.documents.azure.com:10255/?ssl=true&replicaSet=globaldb","description":"Primary + MongoDB Connection String"},{"connectionString":"mongodb://cli000002:TL4hq0oYmOAf1qY2TNjQki2TCmIANj8ysoWwXrAfZxrn6G4nzmWvKdieCNaHxC6LD7PVQme3ovIuhkDFTBOx0g==@cli000002.documents.azure.com:10255/?ssl=true&replicaSet=globaldb","description":"Secondary + MongoDB Connection String"},{"connectionString":"mongodb://cli000002:24cma8RwkJ6GKSghpC0jY3NfaLqrtfxn43x0soQfMPvbCQ1QaN1dLXjpkWkaml7hJZa0sASarxLxe0r2LY6y0A==@cli000002.documents.azure.com:10255/?ssl=true&replicaSet=globaldb","description":"Primary + Read-Only MongoDB Connection String"},{"connectionString":"mongodb://cli000002:8vyeyEuL8kRGMHzJEpKdsUHezJjgR460nMeHQIntSE1Oy7DZaspIrHk3270pbaLMZSLMBLa8578ExM3tNVFzgQ==@cli000002.documents.azure.com:10255/?ssl=true&replicaSet=globaldb","description":"Secondary Read-Only MongoDB Connection String"}]}' headers: cache-control: @@ -1534,7 +2605,7 @@ interactions: content-type: - application/json date: - - Wed, 11 Dec 2019 01:38:51 GMT + - Tue, 07 Jul 2020 07:38:04 GMT pragma: - no-cache server: @@ -1548,7 +2619,7 @@ interactions: x-content-type-options: - nosniff x-ms-gatewayversion: - - version=2.7.0 + - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: diff --git a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/test_cosmosdb_commands.py b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/test_cosmosdb_commands.py index c919f1eba91..7f255a47627 100644 --- a/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/test_cosmosdb_commands.py +++ b/src/azure-cli/azure/cli/command_modules/cosmosdb/tests/latest/test_cosmosdb_commands.py @@ -48,16 +48,21 @@ def test_update_database_account(self, resource_group): 'acc': self.create_random_name(prefix='cli', length=40) }) - self.cmd('az cosmosdb create -n {acc} -g {rg} --kind MongoDB --ip-range-filter 10.10.10.10') + self.cmd('az cosmosdb create -n {acc} -g {rg} --kind MongoDB --ip-range-filter "20.10.10.10,12.12.122.122,12.22.11.11" --server-version 3.2 --enable-analytical-storage true --enable-free-tier false') self.cmd('az cosmosdb show -n {acc} -g {rg}', checks=[ JMESPathCheck('kind', 'MongoDB'), - self.check('ipRangeFilter', "10.10.10.10"), + self.check('ipRules[0].ipAddressOrRange', '20.10.10.10'), + self.check('ipRules[1].ipAddressOrRange', '12.12.122.122'), + self.check('ipRules[2].ipAddressOrRange', '12.22.11.11'), + self.check('apiProperties.serverVersion', '3.2'), + self.check('enableAnalyticalStorage', 'True'), + self.check('enableFreeTier', 'False') ]) self.cmd('az cosmosdb update -n {acc} -g {rg} --capabilities EnableAggregationPipeline') account = self.cmd('az cosmosdb show -n {acc} -g {rg}', checks=[ JMESPathCheck('kind', 'MongoDB'), - self.check('ipRangeFilter', "10.10.10.10"), + self.check('ipRules[0].ipAddressOrRange', "20.10.10.10"), ]).get_output_in_json() assert len(account['capabilities']) == 1 assert account['capabilities'][0]['name'] == "EnableAggregationPipeline" @@ -319,7 +324,7 @@ def test_cosmosdb_private_link_resource(self, resource_group): def test_cosmosdb_private_endpoint(self, resource_group): self.kwargs.update({ 'acc': self.create_random_name('cli-test-cosmosdb-pe-', 28), - 'loc': 'centraluseuap', + 'loc': 'eastus2', 'vnet': self.create_random_name('cli-vnet-', 24), 'subnet': self.create_random_name('cli-subnet-', 24), 'pe': self.create_random_name('cli-pe-', 24), @@ -688,21 +693,23 @@ def test_cosmosdb_mongodb_collection(self, resource_group): 'db_name': self.create_random_name(prefix='cli', length=15), 'col_name': col_name, 'shard_key': "theShardKey", - 'indexes': '"[{\\"key\\": {\\"keys\\": [\\"_ts\\"]},\\"options\\": {\\"expireAfterSeconds\\": 1000}}]"' + 'indexes': '"[{\\"key\\": {\\"keys\\": [\\"_ts\\"]},\\"options\\": {\\"expireAfterSeconds\\": 1000}}]"', + 'ttl': "3000", + 'new_ttl': "6000" }) - self.cmd('az cosmosdb create -n {acc} -g {rg} --kind MongoDB') + self.cmd('az cosmosdb create -n {acc} -g {rg} --kind MongoDB --enable-analytical-storage true') self.cmd('az cosmosdb mongodb database create -g {rg} -a {acc} -n {db_name}') assert not self.cmd('az cosmosdb mongodb collection exists -g {rg} -a {acc} -d {db_name} -n {col_name}').get_output_in_json() collection_create = self.cmd( - 'az cosmosdb mongodb collection create -g {rg} -a {acc} -d {db_name} -n {col_name} --shard {shard_key}').get_output_in_json() + 'az cosmosdb mongodb collection create -g {rg} -a {acc} -d {db_name} -n {col_name} --shard {shard_key} --analytical-storage-ttl {ttl}').get_output_in_json() assert collection_create["name"] == col_name indexes_size = len(collection_create["resource"]["indexes"]) collection_update = self.cmd( - 'az cosmosdb mongodb collection update -g {rg} -a {acc} -d {db_name} -n {col_name} --idx {indexes}').get_output_in_json() + 'az cosmosdb mongodb collection update -g {rg} -a {acc} -d {db_name} -n {col_name} --idx {indexes} --analytical-storage-ttl {new_ttl}').get_output_in_json() assert len(collection_update["resource"]["indexes"]) == indexes_size + 1 collection_show = self.cmd( @@ -758,18 +765,20 @@ def test_cosmosdb_cassandra_table(self, resource_group): 'table_name': table_name, 'schema': '"{\\"columns\\": [{\\"name\\": \\"columnA\\",\\"type\\": \\"Ascii\\"}],\\"partitionKeys\\": [{\\"name\\": \\"columnA\\"}]}"', 'new_schema': '"{\\"columns\\": [{\\"name\\": \\"columnA\\",\\"type\\": \\"Ascii\\"}, {\\"name\\": \\"columnB\\",\\"type\\": \\"Ascii\\"}],\\"partitionKeys\\": [{\\"name\\": \\"columnA\\"}]}"', + 'ttl': "3000", + 'new_ttl': "6000" }) - self.cmd('az cosmosdb create -n {acc} -g {rg} --capabilities EnableCassandra') + self.cmd('az cosmosdb create -n {acc} -g {rg} --capabilities EnableCassandra --enable-analytical-storage true') self.cmd('az cosmosdb cassandra keyspace create -g {rg} -a {acc} -n {ks_name}').get_output_in_json() assert not self.cmd('az cosmosdb cassandra table exists -g {rg} -a {acc} -k {ks_name} -n {table_name}').get_output_in_json() - table_create = self.cmd('az cosmosdb cassandra table create -g {rg} -a {acc} -k {ks_name} -n {table_name} --schema {schema}').get_output_in_json() + table_create = self.cmd('az cosmosdb cassandra table create -g {rg} -a {acc} -k {ks_name} -n {table_name} --schema {schema} --analytical-storage-ttl {ttl}').get_output_in_json() assert table_create["name"] == table_name assert len(table_create["resource"]["schema"]["columns"]) == 1 - table_update = self.cmd('az cosmosdb cassandra table update -g {rg} -a {acc} -k {ks_name} -n {table_name} --schema {new_schema}').get_output_in_json() + table_update = self.cmd('az cosmosdb cassandra table update -g {rg} -a {acc} -k {ks_name} -n {table_name} --schema {new_schema} --analytical-storage-ttl {new_ttl}').get_output_in_json() assert len(table_update["resource"]["schema"]["columns"]) == 2 table_show = self.cmd('az cosmosdb cassandra table show -g {rg} -a {acc} -k {ks_name} -n {table_name}').get_output_in_json() @@ -918,6 +927,36 @@ def test_cosmosdb_sql_resource_throughput(self, resource_group): ctn_througput_update = self.cmd('az cosmosdb sql container throughput update -g {rg} -a {acc} -d {db_name} -n {ctn_name} --throughput {tp2}').get_output_in_json() assert ctn_througput_update["resource"]["throughput"] == tp2 + @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_sql_resource_max_throughput') + def test_cosmosdb_sql_resource_max_throughput(self, resource_group): + tp1 = 6000 + tp2 = 8000 + + self.kwargs.update({ + 'acc': self.create_random_name(prefix='cli', length=15), + 'db_name': self.create_random_name(prefix='cli', length=15), + 'ctn_name': self.create_random_name(prefix='cli', length=15), + 'part': "/thePartitionKey", + 'tp1': tp1, + 'tp2': tp2, + }) + + self.cmd('az cosmosdb create -n {acc} -g {rg}') + + self.cmd('az cosmosdb sql database create -g {rg} -a {acc} -n {db_name} --max-throughput {tp1}') + db_throughput_show = self.cmd('az cosmosdb sql database throughput show -g {rg} -a {acc} -n {db_name}').get_output_in_json() + assert db_throughput_show["resource"]["autoscaleSettings"]["maxThroughput"] == tp1 + + db_througput_update = self.cmd('az cosmosdb sql database throughput update -g {rg} -a {acc} -n {db_name} --max-throughput {tp2}').get_output_in_json() + assert db_througput_update["resource"]["autoscaleSettings"]["maxThroughput"] == tp2 + + self.cmd('az cosmosdb sql container create -g {rg} -a {acc} -d {db_name} -n {ctn_name} -p {part} --max-throughput {tp1}') + ctn_throughput_show = self.cmd('az cosmosdb sql container throughput show -g {rg} -a {acc} -d {db_name} -n {ctn_name}').get_output_in_json() + assert ctn_throughput_show["resource"]["autoscaleSettings"]["maxThroughput"] == tp1 + + ctn_througput_update = self.cmd('az cosmosdb sql container throughput update -g {rg} -a {acc} -d {db_name} -n {ctn_name} --max-throughput {tp2}').get_output_in_json() + assert ctn_througput_update["resource"]["autoscaleSettings"]["maxThroughput"] == tp2 + @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_mongodb_resource_throughput') def test_cosmosdb_mongodb_resource_throughput(self, resource_group): tp1 = 1000 diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_cosmosdb.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_cosmosdb.yaml index 6802c1b779e..d1eda07e2a6 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_cosmosdb.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_cosmosdb.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_pe000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001","name":"cli_test_cosmosdb_pe000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-19T06:52:08Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001","name":"cli_test_cosmosdb_pe000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T05:21:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 06:52:12 GMT + - Tue, 07 Jul 2020 05:21:28 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,778 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002","name":"cli-test-cosmosdb-pe-000002","location":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:21:34.0055866Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"b93785c6-b474-4ade-9a83-1f8b8a71344a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + cache-control: + - no-store, no-cache + content-length: + - '1715' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:21:33 GMT + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/operationResults/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:22:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:22:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:23:04 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:23:34 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:24:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:24:35 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:25:05 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:25:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:26:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:26:36 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:27:07 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:27:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:28:08 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002","name":"cli-test-cosmosdb-pe-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West - US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + string: '{"status":"Dequeued"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 cache-control: - no-store, no-cache content-length: - - '1558' + - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:52:18 GMT - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/operationResults/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - Tue, 07 Jul 2020 05:28:38 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:29:09 GMT pragma: - no-cache server: @@ -107,8 +844,6 @@ interactions: - nosniff x-ms-gatewayversion: - version=2.11.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1183' status: code: 200 message: Ok @@ -126,10 +861,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:52:49 GMT + - Tue, 07 Jul 2020 05:29:40 GMT pragma: - no-cache server: @@ -175,10 +910,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:53:19 GMT + - Tue, 07 Jul 2020 05:30:10 GMT pragma: - no-cache server: @@ -224,10 +959,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:53:51 GMT + - Tue, 07 Jul 2020 05:30:41 GMT pragma: - no-cache server: @@ -273,10 +1008,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:54:21 GMT + - Tue, 07 Jul 2020 05:31:11 GMT pragma: - no-cache server: @@ -322,10 +1057,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:54:51 GMT + - Tue, 07 Jul 2020 05:31:42 GMT pragma: - no-cache server: @@ -371,10 +1106,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +1119,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:55:22 GMT + - Tue, 07 Jul 2020 05:32:12 GMT pragma: - no-cache server: @@ -420,10 +1155,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +1168,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:55:53 GMT + - Tue, 07 Jul 2020 05:32:42 GMT pragma: - no-cache server: @@ -469,10 +1204,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +1217,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:56:23 GMT + - Tue, 07 Jul 2020 05:33:12 GMT pragma: - no-cache server: @@ -518,10 +1253,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +1266,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:56:53 GMT + - Tue, 07 Jul 2020 05:33:43 GMT pragma: - no-cache server: @@ -567,10 +1302,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +1315,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:57:23 GMT + - Tue, 07 Jul 2020 05:34:13 GMT pragma: - no-cache server: @@ -616,10 +1351,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +1364,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:57:54 GMT + - Tue, 07 Jul 2020 05:34:43 GMT pragma: - no-cache server: @@ -665,10 +1400,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +1413,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:58:24 GMT + - Tue, 07 Jul 2020 05:35:13 GMT pragma: - no-cache server: @@ -714,10 +1449,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +1462,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:58:54 GMT + - Tue, 07 Jul 2020 05:35:43 GMT pragma: - no-cache server: @@ -763,10 +1498,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +1511,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:59:26 GMT + - Tue, 07 Jul 2020 05:36:14 GMT pragma: - no-cache server: @@ -812,10 +1547,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +1560,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:59:56 GMT + - Tue, 07 Jul 2020 05:37:21 GMT pragma: - no-cache server: @@ -861,10 +1596,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +1609,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:00:29 GMT + - Tue, 07 Jul 2020 05:37:51 GMT pragma: - no-cache server: @@ -910,10 +1645,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +1658,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:00:59 GMT + - Tue, 07 Jul 2020 05:38:23 GMT pragma: - no-cache server: @@ -959,10 +1694,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -972,11 +1707,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/e0d124fa-41e4-4bda-8c9b-41e65157d5af?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a8e12f0f-2f1c-4cf0-b0ae-9b3865e0ba91?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:01:30 GMT + - Tue, 07 Jul 2020 05:38:52 GMT pragma: - no-cache server: @@ -1008,29 +1743,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002","name":"cli-test-cosmosdb-pe-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:38:38.9886607Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"b93785c6-b474-4ade-9a83-1f8b8a71344a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1915' + - '2072' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:01:31 GMT + - Tue, 07 Jul 2020 05:38:53 GMT pragma: - no-cache server: @@ -1062,31 +1797,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002","name":"cli-test-cosmosdb-pe-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:38:38.9886607Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"b93785c6-b474-4ade-9a83-1f8b8a71344a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1915' + - '2072' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:01:31 GMT + - Tue, 07 Jul 2020 05:38:53 GMT pragma: - no-cache server: @@ -1105,9 +1840,9 @@ interactions: code: 200 message: Ok - request: - body: '{"location": "centraluseuap", "tags": {}, "properties": {"addressSpace": - {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"properties": - {"addressPrefix": "10.0.0.0/24"}, "name": "cli-subnet-000004"}]}}' + body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"properties": {"addressPrefix": + "10.0.0.0/24"}, "name": "cli-subnet-000004"}]}}' headers: Accept: - application/json @@ -1118,14 +1853,14 @@ interactions: Connection: - keep-alive Content-Length: - - '229' + - '222' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g -l --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -1133,15 +1868,15 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n - \ \"etag\": \"W/\\\"980cd957-58f8-495b-be4f-dd6deadba904\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n + \ \"etag\": \"W/\\\"e6b06b9e-2610-43cf-9771-f24fc6b1d513\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"1b2560ba-4704-4aac-9cc3-64c5f77855d9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9b3d5a28-f900-4440-8bb7-7da3e3afe88a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"980cd957-58f8-495b-be4f-dd6deadba904\\\"\",\r\n + \ \"etag\": \"W/\\\"e6b06b9e-2610-43cf-9771-f24fc6b1d513\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1152,15 +1887,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/50f9501b-fc36-4824-a688-9179691281c2?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ee478cce-e106-432e-bf8f-b967dbec65e9?api-version=2020-05-01 cache-control: - no-cache content-length: - - '1535' + - '1528' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:01:36 GMT + - Tue, 07 Jul 2020 05:38:55 GMT expires: - '-1' pragma: @@ -1173,9 +1908,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d24c4965-fbf4-491d-bf49-e1bf07db2fd6 + - 427765a8-76a6-4398-a39a-af39745815a3 x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1199' status: code: 201 message: Created @@ -1193,10 +1928,10 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/50f9501b-fc36-4824-a688-9179691281c2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ee478cce-e106-432e-bf8f-b967dbec65e9?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1208,7 +1943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:01:41 GMT + - Tue, 07 Jul 2020 05:38:58 GMT expires: - '-1' pragma: @@ -1225,7 +1960,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b4c5b984-6110-426b-9f3a-73f1280a65a7 + - 82f3c6aa-9f89-417b-87e6-115569503c3d status: code: 200 message: OK @@ -1243,22 +1978,22 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n - \ \"etag\": \"W/\\\"83ebf757-3745-4a19-9ab4-65bae43d9254\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n + \ \"etag\": \"W/\\\"52fa2d9e-ff00-4452-a42d-e22eae5d3c43\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"1b2560ba-4704-4aac-9cc3-64c5f77855d9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"9b3d5a28-f900-4440-8bb7-7da3e3afe88a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"cli-subnet-000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"83ebf757-3745-4a19-9ab4-65bae43d9254\\\"\",\r\n + \ \"etag\": \"W/\\\"52fa2d9e-ff00-4452-a42d-e22eae5d3c43\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -1269,13 +2004,13 @@ interactions: cache-control: - no-cache content-length: - - '1537' + - '1530' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:01:41 GMT + - Tue, 07 Jul 2020 05:38:59 GMT etag: - - W/"83ebf757-3745-4a19-9ab4-65bae43d9254" + - W/"52fa2d9e-ff00-4452-a42d-e22eae5d3c43" expires: - '-1' pragma: @@ -1292,7 +2027,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d56723e-72ae-4f74-9513-4bd705b6738d + - 9ced1785-60e7-4a20-b341-0d1f79091c4c status: code: 200 message: OK @@ -1310,8 +2045,8 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET @@ -1319,7 +2054,7 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"83ebf757-3745-4a19-9ab4-65bae43d9254\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"52fa2d9e-ff00-4452-a42d-e22eae5d3c43\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -1332,9 +2067,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:01:42 GMT + - Tue, 07 Jul 2020 05:38:59 GMT etag: - - W/"83ebf757-3745-4a19-9ab4-65bae43d9254" + - W/"52fa2d9e-ff00-4452-a42d-e22eae5d3c43" expires: - '-1' pragma: @@ -1351,7 +2086,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5d44b7b1-8087-4fd1-adc4-94c6b30eba58 + - bd6bc18a-af69-4b82-be61-a23d4a12dc40 status: code: 200 message: OK @@ -1375,8 +2110,8 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -1384,14 +2119,14 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"e96bfa73-93aa-402d-ba60-9e1955734046\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"c6d18819-116d-4aff-a039-6c88918219e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/a816db4e-f61b-4b5e-b466-4f1dde228b88?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2832ae81-7774-4d3a-aa6c-3170e2ba8e9f?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1399,7 +2134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:01:43 GMT + - Tue, 07 Jul 2020 05:39:00 GMT expires: - '-1' pragma: @@ -1416,9 +2151,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 82fda647-3201-4bf6-93f1-4d060aa7659d + - 0390b554-e8e2-4015-8640-8a8bc29b187a x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1198' status: code: 200 message: OK @@ -1436,10 +2171,10 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/a816db4e-f61b-4b5e-b466-4f1dde228b88?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2832ae81-7774-4d3a-aa6c-3170e2ba8e9f?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1451,7 +2186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:01:47 GMT + - Tue, 07 Jul 2020 05:39:04 GMT expires: - '-1' pragma: @@ -1468,7 +2203,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eb69fbde-610f-41f1-9e7b-539489f2b2e4 + - 89e1425f-5900-48be-a729-ec35418afbcd status: code: 200 message: OK @@ -1486,14 +2221,14 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"29ad793a-073d-4ba5-8b04-0b92e3e635be\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"ea676b80-30f8-41b7-862a-5283676074aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -1506,9 +2241,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:01:48 GMT + - Tue, 07 Jul 2020 05:39:04 GMT etag: - - W/"29ad793a-073d-4ba5-8b04-0b92e3e635be" + - W/"ea676b80-30f8-41b7-862a-5283676074aa" expires: - '-1' pragma: @@ -1525,12 +2260,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2f6edd2a-6a05-43ae-8782-762c3237bf49 + - 975c39b1-c5d0-42b0-a8ed-bea668c6eeac status: code: 200 message: OK - request: - body: 'b''{"location": "centraluseuap", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004"}, + body: 'b''{"location": "eastus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004"}, "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002", "groupIds": ["Sql"]}, "name": "cli-pec-000006"}]}}''' headers: @@ -1543,15 +2278,15 @@ interactions: Connection: - keep-alive Content-Length: - - '668' + - '661' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id - --group-ids + --group-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT @@ -1559,12 +2294,12 @@ interactions: response: body: string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n - \ \"etag\": \"W/\\\"57318e2f-fe2a-4b48-83b1-2dc5e5098acf\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n + \ \"etag\": \"W/\\\"0a6f0c82-4a8e-4925-a858-fcfa00692390\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"755f1158-f7ad-4af1-a908-455ddc934206\",\r\n \"privateLinkServiceConnections\": + \"5a51bc98-adba-43d9-9a6b-4981545b1a55\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n - \ \"etag\": \"W/\\\"57318e2f-fe2a-4b48-83b1-2dc5e5098acf\\\"\",\r\n + \ \"etag\": \"W/\\\"0a6f0c82-4a8e-4925-a858-fcfa00692390\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002\",\r\n \ \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1573,21 +2308,21 @@ interactions: \ \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.33c0c36e-af62-470c-b0d2-b0d8eff9632c\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.ddc907c2-0b14-4586-8db1-3bb347982503\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b37d1c40-24b8-4101-9a1c-df2ae000d560?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3491eddd-0745-432f-bc53-113aefcca939?api-version=2020-05-01 cache-control: - no-cache content-length: - - '2327' + - '2320' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:01:53 GMT + - Tue, 07 Jul 2020 05:39:11 GMT expires: - '-1' pragma: @@ -1600,9 +2335,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 72df904d-abd2-4ee9-a31d-7bfef055456f + - 040cd360-fc3e-4dd7-b3aa-2ead1d784abd x-ms-ratelimit-remaining-subscription-writes: - - '1183' + - '1199' status: code: 201 message: Created @@ -1619,12 +2354,63 @@ interactions: - keep-alive ParameterSetName: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id - --group-ids + --group-id + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3491eddd-0745-432f-bc53-113aefcca939?api-version=2020-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 07 Jul 2020 05:39:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 33a400f7-9179-4f5d-9d07-64bb58baa2d6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id + --group-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b37d1c40-24b8-4101-9a1c-df2ae000d560?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3491eddd-0745-432f-bc53-113aefcca939?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1636,7 +2422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:02:04 GMT + - Tue, 07 Jul 2020 05:39:31 GMT expires: - '-1' pragma: @@ -1653,7 +2439,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 21a2b1ee-95a5-4036-b7b0-99def528d5f4 + - 9aea7565-87d1-4326-87bf-22ca147ca621 status: code: 200 message: OK @@ -1670,12 +2456,12 @@ interactions: - keep-alive ParameterSetName: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id - --group-ids + --group-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/b37d1c40-24b8-4101-9a1c-df2ae000d560?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3491eddd-0745-432f-bc53-113aefcca939?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1687,7 +2473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:02:15 GMT + - Tue, 07 Jul 2020 05:39:41 GMT expires: - '-1' pragma: @@ -1704,7 +2490,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eb9aa711-79ab-49ef-8089-ba82d7b8020f + - 7be9485c-57b1-4450-b65e-38297e96127e status: code: 200 message: OK @@ -1721,21 +2507,21 @@ interactions: - keep-alive ParameterSetName: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id - --group-ids + --group-id User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/10.2.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n - \ \"etag\": \"W/\\\"5299fd3c-0924-43d6-a08b-78afb9d09f0d\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n + \ \"etag\": \"W/\\\"136fa0c2-555c-489d-a30a-c60aaa2c77b4\\\"\",\r\n \"type\": + \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"755f1158-f7ad-4af1-a908-455ddc934206\",\r\n \"privateLinkServiceConnections\": + \"5a51bc98-adba-43d9-9a6b-4981545b1a55\",\r\n \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n - \ \"etag\": \"W/\\\"5299fd3c-0924-43d6-a08b-78afb9d09f0d\\\"\",\r\n + \ \"etag\": \"W/\\\"136fa0c2-555c-489d-a30a-c60aaa2c77b4\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002\",\r\n \ \"groupIds\": [\r\n \"Sql\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -1744,7 +2530,7 @@ interactions: \ \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n \ \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n - \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.33c0c36e-af62-470c-b0d2-b0d8eff9632c\"\r\n + \ },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.ddc907c2-0b14-4586-8db1-3bb347982503\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"cli-test-cosmosdb-pe-000002.documents.azure.com\",\r\n \"ipAddresses\": [\r\n \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \"fqdn\": @@ -1754,13 +2540,13 @@ interactions: cache-control: - no-cache content-length: - - '2634' + - '2627' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 07:02:16 GMT + - Tue, 07 Jul 2020 05:39:41 GMT etag: - - W/"5299fd3c-0924-43d6-a08b-78afb9d09f0d" + - W/"136fa0c2-555c-489d-a30a-c60aaa2c77b4" expires: - '-1' pragma: @@ -1777,7 +2563,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8f66231f-ab29-46a7-9ea0-c3b5cfeb4aa3 + - 675520d7-a902-4a38-b34e-56b987c8dc7c status: code: 200 message: OK @@ -1795,7 +2581,7 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -1807,11 +2593,11 @@ interactions: content-length: - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:17 GMT + - Tue, 07 Jul 2020 05:39:43 GMT pragma: - no-cache server: @@ -1843,7 +2629,7 @@ interactions: ParameterSetName: - --resource-name --name --resource-group --type User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -1855,11 +2641,11 @@ interactions: content-length: - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:18 GMT + - Tue, 07 Jul 2020 05:39:43 GMT pragma: - no-cache server: @@ -1891,7 +2677,7 @@ interactions: ParameterSetName: - --resource-name -n -g --type User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -1903,11 +2689,11 @@ interactions: content-length: - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:19 GMT + - Tue, 07 Jul 2020 05:39:45 GMT pragma: - no-cache server: @@ -1939,7 +2725,7 @@ interactions: ParameterSetName: - --resource-name --resource-group --name --type --description User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -1951,11 +2737,11 @@ interactions: content-length: - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:20 GMT + - Tue, 07 Jul 2020 05:39:46 GMT pragma: - no-cache server: @@ -1996,7 +2782,7 @@ interactions: ParameterSetName: - --resource-name --resource-group --name --type --description User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -2004,19 +2790,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/c7b847ff-ac3a-4b19-b14f-e7f6f74ad70f?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d01ea75f-80c0-4603-9492-d1e73b75be59?api-version=2019-08-01-preview cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:22 GMT + - Tue, 07 Jul 2020 05:39:46 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/c7b847ff-ac3a-4b19-b14f-e7f6f74ad70f?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/d01ea75f-80c0-4603-9492-d1e73b75be59?api-version=2019-08-01-preview pragma: - no-cache server: @@ -2028,7 +2814,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1156' + - '1199' status: code: 202 message: Accepted @@ -2046,24 +2832,23 @@ interactions: ParameterSetName: - --resource-name --resource-group --name --type --description User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: body: - string: '{"name":"cli-pe-000005","type":"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005","properties":{"provisioningState":"Succeeded","groupId":"Sql","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"You - are approved!","actionsRequired":"None"}}}' + string: '{"name":"cli-pe-000005","type":"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005","properties":{"provisioningState":"Succeeded","groupId":"Sql","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","actionsRequired":"None"}}}' headers: cache-control: - no-store, no-cache content-length: - - '808' + - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:32 GMT + - Tue, 07 Jul 2020 05:39:56 GMT pragma: - no-cache server: @@ -2095,24 +2880,23 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: body: - string: '{"name":"cli-pe-000005","type":"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005","properties":{"provisioningState":"Succeeded","groupId":"Sql","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"You - are approved!","actionsRequired":"None"}}}' + string: '{"name":"cli-pe-000005","type":"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005","properties":{"provisioningState":"Succeeded","groupId":"Sql","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","actionsRequired":"None"}}}' headers: cache-control: - no-store, no-cache content-length: - - '808' + - '774' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:34 GMT + - Tue, 07 Jul 2020 05:39:57 GMT pragma: - no-cache server: @@ -2135,8 +2919,8 @@ interactions: "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005", "properties": {"provisioningState": "Succeeded", "groupId": "Sql", "privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"}, - "privateLinkServiceConnectionState": {"status": "Rejected", "description": "You - are rejected!", "actionsRequired": "None"}}}''' + "privateLinkServiceConnectionState": {"status": "Rejected", "actionsRequired": + "None", "description": "You are rejected!"}}}''' headers: Accept: - '*/*' @@ -2153,7 +2937,7 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -2161,19 +2945,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/9213ae27-2d3e-46e8-b8a8-5247dc16f4e8?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/2a1088a9-1c55-4f81-ac9e-a758c3348f81?api-version=2019-08-01-preview cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:35 GMT + - Tue, 07 Jul 2020 05:39:58 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/9213ae27-2d3e-46e8-b8a8-5247dc16f4e8?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/2a1088a9-1c55-4f81-ac9e-a758c3348f81?api-version=2019-08-01-preview pragma: - no-cache server: @@ -2185,7 +2969,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1186' + - '1198' status: code: 202 message: Accepted @@ -2203,7 +2987,152 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview + response: + body: + string: '{"name":"cli-pe-000005","type":"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005","properties":{"provisioningState":"Succeeded","groupId":"Sql","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","actionsRequired":"None"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '774' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:40:08 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - --id --description + User-Agent: + - AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview + response: + body: + string: '{"name":"cli-pe-000005","type":"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005","properties":{"provisioningState":"Succeeded","groupId":"Sql","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","actionsRequired":"None"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '774' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:40:18 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - --id --description + User-Agent: + - AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview + response: + body: + string: '{"name":"cli-pe-000005","type":"Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005","properties":{"provisioningState":"Succeeded","groupId":"Sql","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"You + are approved!","actionsRequired":"None"}}}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '808' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview + content-type: + - application/json + date: + - Tue, 07 Jul 2020 05:40:29 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint-connection reject + Connection: + - keep-alive + ParameterSetName: + - --id --description + User-Agent: + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -2216,11 +3145,11 @@ interactions: content-length: - '808' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:45 GMT + - Tue, 07 Jul 2020 05:40:39 GMT pragma: - no-cache server: @@ -2252,7 +3181,7 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -2265,11 +3194,11 @@ interactions: content-length: - '808' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:02:57 GMT + - Tue, 07 Jul 2020 05:40:50 GMT pragma: - no-cache server: @@ -2301,7 +3230,7 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -2314,11 +3243,11 @@ interactions: content-length: - '808' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:03:08 GMT + - Tue, 07 Jul 2020 05:41:00 GMT pragma: - no-cache server: @@ -2350,7 +3279,7 @@ interactions: ParameterSetName: - --id --description User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -2363,11 +3292,11 @@ interactions: content-length: - '808' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:03:21 GMT + - Tue, 07 Jul 2020 05:41:11 GMT pragma: - no-cache server: @@ -2399,14 +3328,14 @@ interactions: ParameterSetName: - --name --resource-group --type User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002?api-version=2020-03-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002","name":"cli-test-cosmosdb-pe-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"You - are rejected!","actionsRequired":"None"}}}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:38:38.9886607Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-pe-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"You + are rejected!","actionsRequired":"None"}}}],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"b93785c6-b474-4ade-9a83-1f8b8a71344a","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-pe-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-pe-000002-westus","locationName":"West @@ -2415,13 +3344,13 @@ interactions: cache-control: - no-store, no-cache content-length: - - '2599' + - '2762' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh?api-version=2020-03-01 content-type: - application/json date: - - Tue, 19 May 2020 07:03:22 GMT + - Tue, 07 Jul 2020 05:41:11 GMT pragma: - no-cache server: @@ -2455,7 +3384,7 @@ interactions: ParameterSetName: - --id -y User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005?api-version=2019-08-01-preview response: @@ -2463,19 +3392,19 @@ interactions: string: '{"status":"Enqueued"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/a5bba8d1-9262-4215-8642-0cc5f440066f?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/0878947c-684e-4ad1-9305-9742f7b535f5?api-version=2019-08-01-preview cache-control: - no-store, no-cache content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_penfspvqo6qgabcobsc7hnluh724in63hwtfl3l2tdtshdcr3odg5vksn/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-mayuwf2/privateEndpointConnections/cli-pe-dblt5nksg2chrhofc?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_pesq4tmkna65f54gtn6q4fh4u6x5gnpqvhfselflvcwtyky744iehnf7h/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-cgtyuzh/privateEndpointConnections/cli-pe-onln5ekqjflhbuy4z?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:03:24 GMT + - Tue, 07 Jul 2020 05:41:12 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/a5bba8d1-9262-4215-8642-0cc5f440066f?api-version=2019-08-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_pe000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-pe-000002/privateEndpointConnections/cli-pe-000005/operationResults/0878947c-684e-4ad1-9305-9742f7b535f5?api-version=2019-08-01-preview pragma: - no-cache server: @@ -2487,7 +3416,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14999' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_cosmosdb.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_cosmosdb.yaml index df7f234003e..31a6a56fe04 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_cosmosdb.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_cosmosdb.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/9.0.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_cosmosdb_plr000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001","name":"cli_test_cosmosdb_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-05-19T06:50:58Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001","name":"cli_test_cosmosdb_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-07-07T05:54:39Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '471' + - '428' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 06:51:01 GMT + - Tue, 07 Jul 2020 05:54:42 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: - request: body: '{"location": "westus", "kind": "GlobalDocumentDB", "properties": {"locations": [{"locationName": "westus", "failoverPriority": 0, "isZoneRedundant": false}], - "databaseAccountOfferType": "Standard"}}' + "databaseAccountOfferType": "Standard", "apiProperties": {}}}' headers: Accept: - application/json @@ -58,41 +58,41 @@ interactions: Connection: - keep-alive Content-Length: - - '198' + - '219' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002","name":"cli-test-cosmosdb-plr-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T05:54:49.2652756Z"},"properties":{"provisioningState":"Creating","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"129892af-3012-456e-9e5d-bf38081ec288","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","provisioningState":"Creating","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 cache-control: - no-store, no-cache content-length: - - '1558' + - '1715' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_plr6vbaiqm26ekbvcfe22wro6odlxm7nqcjfwrqoaqp454nbwuhd43gap/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-knhydw?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_plrg4bybik27a7xdxsdlnankcd5o4xkymv363xt4awdxafe7qhooqekha/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-4ifbwh?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:51:09 GMT + - Tue, 07 Jul 2020 05:54:49 GMT location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002/operationResults/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002/operationResults/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 pragma: - no-cache server: @@ -108,7 +108,7 @@ interactions: x-ms-gatewayversion: - version=2.11.0 x-ms-ratelimit-remaining-subscription-writes: - - '1185' + - '1198' status: code: 200 message: Ok @@ -126,10 +126,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -139,11 +139,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:51:40 GMT + - Tue, 07 Jul 2020 05:55:20 GMT pragma: - no-cache server: @@ -175,10 +175,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -188,11 +188,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:52:11 GMT + - Tue, 07 Jul 2020 05:55:50 GMT pragma: - no-cache server: @@ -224,10 +224,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -237,11 +237,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:52:41 GMT + - Tue, 07 Jul 2020 05:56:20 GMT pragma: - no-cache server: @@ -273,10 +273,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -286,11 +286,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:53:11 GMT + - Tue, 07 Jul 2020 05:56:51 GMT pragma: - no-cache server: @@ -322,10 +322,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -335,11 +335,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:53:41 GMT + - Tue, 07 Jul 2020 05:57:20 GMT pragma: - no-cache server: @@ -371,10 +371,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -384,11 +384,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:54:11 GMT + - Tue, 07 Jul 2020 05:57:51 GMT pragma: - no-cache server: @@ -420,10 +420,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -433,11 +433,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:54:44 GMT + - Tue, 07 Jul 2020 05:58:21 GMT pragma: - no-cache server: @@ -469,10 +469,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -482,11 +482,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:55:14 GMT + - Tue, 07 Jul 2020 05:58:52 GMT pragma: - no-cache server: @@ -518,10 +518,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -531,11 +531,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:55:44 GMT + - Tue, 07 Jul 2020 05:59:22 GMT pragma: - no-cache server: @@ -567,10 +567,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -580,11 +580,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:56:14 GMT + - Tue, 07 Jul 2020 05:59:52 GMT pragma: - no-cache server: @@ -616,10 +616,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -629,11 +629,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:56:44 GMT + - Tue, 07 Jul 2020 06:00:22 GMT pragma: - no-cache server: @@ -665,10 +665,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -678,11 +678,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:57:15 GMT + - Tue, 07 Jul 2020 06:00:53 GMT pragma: - no-cache server: @@ -714,10 +714,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -727,11 +727,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:57:45 GMT + - Tue, 07 Jul 2020 06:01:23 GMT pragma: - no-cache server: @@ -763,10 +763,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -776,11 +776,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:58:16 GMT + - Tue, 07 Jul 2020 06:01:53 GMT pragma: - no-cache server: @@ -812,10 +812,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -825,11 +825,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:58:46 GMT + - Tue, 07 Jul 2020 06:02:24 GMT pragma: - no-cache server: @@ -861,10 +861,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -874,11 +874,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:59:17 GMT + - Tue, 07 Jul 2020 06:02:55 GMT pragma: - no-cache server: @@ -910,10 +910,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -923,11 +923,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 06:59:47 GMT + - Tue, 07 Jul 2020 06:03:25 GMT pragma: - no-cache server: @@ -959,10 +959,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -972,11 +972,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:00:18 GMT + - Tue, 07 Jul 2020 06:03:55 GMT pragma: - no-cache server: @@ -1008,10 +1008,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1021,11 +1021,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:00:49 GMT + - Tue, 07 Jul 2020 06:04:26 GMT pragma: - no-cache server: @@ -1057,10 +1057,10 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Dequeued"}' @@ -1070,11 +1070,11 @@ interactions: content-length: - '21' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:01:19 GMT + - Tue, 07 Jul 2020 06:04:56 GMT pragma: - no-cache server: @@ -1106,10 +1106,206 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 06:05:26 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 06:05:57 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 06:06:28 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 + response: + body: + string: '{"status":"Dequeued"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '21' + content-location: + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 + content-type: + - application/json + date: + - Tue, 07 Jul 2020 06:06:57 GMT + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-gatewayversion: + - version=2.11.0 + status: + code: 200 + message: Ok +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - cosmosdb create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 response: body: string: '{"status":"Succeeded"}' @@ -1119,11 +1315,11 @@ interactions: content-length: - '22' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/4479dd61-e6dd-45ad-8f6d-93b3732657f8?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/providers/Microsoft.DocumentDB/locations/westus/operationsStatus/d4d41fb4-47b3-4243-94cd-ce845f2d8c68?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:01:50 GMT + - Tue, 07 Jul 2020 06:07:27 GMT pragma: - no-cache server: @@ -1155,29 +1351,29 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002","name":"cli-test-cosmosdb-plr-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-plr-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T06:07:14.5051296Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-plr-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"129892af-3012-456e-9e5d-bf38081ec288","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1915' + - '2072' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_plr6vbaiqm26ekbvcfe22wro6odlxm7nqcjfwrqoaqp454nbwuhd43gap/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-knhydw?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_plrg4bybik27a7xdxsdlnankcd5o4xkymv363xt4awdxafe7qhooqekha/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-4ifbwh?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:01:50 GMT + - Tue, 07 Jul 2020 06:07:27 GMT pragma: - no-cache server: @@ -1209,31 +1405,31 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.14.0 - Azure-SDK-For-Python AZURECLI/2.5.1 + - python/3.8.2 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-cosmosdb/0.15.0 + Azure-SDK-For-Python AZURECLI/2.8.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002?api-version=2020-04-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002","name":"cli-test-cosmosdb-plr-000002","location":"West - US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-plr-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"databaseAccountOfferType":"Standard","ipRangeFilter":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West + US","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","tags":{},"systemData":{"createdAt":"2020-07-07T06:07:14.5051296Z"},"properties":{"provisioningState":"Succeeded","documentEndpoint":"https://cli-test-cosmosdb-plr-000002.documents.azure.com:443/","publicNetworkAccess":"Enabled","enableAutomaticFailover":false,"enableMultipleWriteLocations":false,"enablePartitionKeyMonitor":false,"isVirtualNetworkFilterEnabled":false,"virtualNetworkRules":[],"EnabledApiTypes":"Sql","disableKeyBasedMetadataWriteAccess":false,"enableFreeTier":false,"enableAnalyticalStorage":false,"instanceId":"129892af-3012-456e-9e5d-bf38081ec288","databaseAccountOfferType":"Standard","enableCassandraConnector":false,"connectorOffer":"","consistencyPolicy":{"defaultConsistencyLevel":"Session","maxIntervalInSeconds":5,"maxStalenessPrefix":100},"configurationOverrides":{},"writeLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"readLocations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"locations":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West US","documentEndpoint":"https://cli-test-cosmosdb-plr-000002-westus.documents.azure.com:443/","provisioningState":"Succeeded","failoverPriority":0,"isZoneRedundant":false}],"failoverPolicies":[{"id":"cli-test-cosmosdb-plr-000002-westus","locationName":"West - US","failoverPriority":0}],"cors":[],"capabilities":[]}}' + US","failoverPriority":0}],"cors":[],"capabilities":[],"ipRules":[]}}' headers: cache-control: - no-store, no-cache content-length: - - '1915' + - '2072' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_plr6vbaiqm26ekbvcfe22wro6odlxm7nqcjfwrqoaqp454nbwuhd43gap/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-knhydw?api-version=2020-03-01 + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_plrg4bybik27a7xdxsdlnankcd5o4xkymv363xt4awdxafe7qhooqekha/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-4ifbwh?api-version=2020-04-01 content-type: - application/json date: - - Tue, 19 May 2020 07:01:50 GMT + - Tue, 07 Jul 2020 06:07:28 GMT pragma: - no-cache server: @@ -1265,7 +1461,7 @@ interactions: ParameterSetName: - --name --resource-group --type User-Agent: - - AZURECLI/2.5.1 + - AZURECLI/2.8.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_cosmosdb_plr000001/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-000002/privateLinkResources?api-version=2019-08-01-preview response: @@ -1277,21 +1473,17 @@ interactions: content-length: - '522' content-location: - - https://management.documents.azure.com:450/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/cli_test_cosmosdb_plr6vbaiqm26ekbvcfe22wro6odlxm7nqcjfwrqoaqp454nbwuhd43gap/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-knhydw/privateLinkResources?api-version=2019-08-01-preview + - https://management.documents.azure.com:450/subscriptions/12053b8f-cab5-4f5c-9c1a-870580142abd/resourceGroups/cli_test_cosmosdb_plrg4bybik27a7xdxsdlnankcd5o4xkymv363xt4awdxafe7qhooqekha/providers/Microsoft.DocumentDB/databaseAccounts/cli-test-cosmosdb-plr-4ifbwh/privateLinkResources?api-version=2019-08-01-preview content-type: - application/json date: - - Tue, 19 May 2020 07:01:51 GMT + - Tue, 07 Jul 2020 06:07:28 GMT pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-gatewayversion: diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py index 4359ebba8ea..de1c205d4fb 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py @@ -677,19 +677,19 @@ class NetworkPrivateLinkCosmosDBScenarioTest(ScenarioTest): def test_private_link_resource_cosmosdb(self, resource_group): self.kwargs.update({ 'acc': self.create_random_name('cli-test-cosmosdb-plr-', 28), - 'loc': 'centraluseuap' + 'loc': 'eastus' }) self.cmd('az cosmosdb create -n {acc} -g {rg}') - self.cmd('network private-link-resource list --name {acc} --resource-group {rg} --type Microsoft.DocumentDB/databaseAccounts', + self.cmd('az network private-link-resource list --name {acc} --resource-group {rg} --type Microsoft.DocumentDB/databaseAccounts', checks=[self.check('length(@)', 1), self.check('[0].properties.groupId', 'Sql')]) @ResourceGroupPreparer(name_prefix='cli_test_cosmosdb_pe') def test_private_endpoint_connection_cosmosdb(self, resource_group): self.kwargs.update({ 'acc': self.create_random_name('cli-test-cosmosdb-pe-', 28), - 'loc': 'centraluseuap', + 'loc': 'eastus', 'vnet': self.create_random_name('cli-vnet-', 24), 'subnet': self.create_random_name('cli-subnet-', 24), 'pe': self.create_random_name('cli-pe-', 24), @@ -699,14 +699,14 @@ def test_private_endpoint_connection_cosmosdb(self, resource_group): # Prepare cosmos db account and network account = self.cmd('az cosmosdb create -n {acc} -g {rg}').get_output_in_json() self.kwargs['acc_id'] = account['id'] - self.cmd('network vnet create -n {vnet} -g {rg} -l {loc} --subnet-name {subnet}', + self.cmd('az network vnet create -n {vnet} -g {rg} -l {loc} --subnet-name {subnet}', checks=self.check('length(newVNet.subnets)', 1)) - self.cmd('network vnet subnet update -n {subnet} --vnet-name {vnet} -g {rg} ' + self.cmd('az network vnet subnet update -n {subnet} --vnet-name {vnet} -g {rg} ' '--disable-private-endpoint-network-policies true', checks=self.check('privateEndpointNetworkPolicies', 'Disabled')) # Create a private endpoint connection - pe = self.cmd('network private-endpoint create -g {rg} -n {pe} --vnet-name {vnet} --subnet {subnet} -l {loc} ' + pe = self.cmd('az network private-endpoint create -g {rg} -n {pe} --vnet-name {vnet} --subnet {subnet} -l {loc} ' '--connection-name {pe_connection} --private-connection-resource-id {acc_id} ' '--group-id Sql').get_output_in_json() self.kwargs['pe_id'] = pe['id'] @@ -717,12 +717,12 @@ def test_private_endpoint_connection_cosmosdb(self, resource_group): self.kwargs[ 'pec_id'] = '/subscriptions/{0}/resourceGroups/{1}/providers/Microsoft.DocumentDB/databaseAccounts/{2}/privateEndpointConnections/{3}'.format( results[2], results[4], self.kwargs['acc'], results[-1]) - self.cmd('network private-endpoint-connection show --id {pec_id}', + self.cmd('az network private-endpoint-connection show --id {pec_id}', checks=self.check('id', '{pec_id}')) self.cmd( - 'network private-endpoint-connection show --resource-name {acc} --name {pe_name} --resource-group {rg} --type Microsoft.DocumentDB/databaseAccounts', + 'az network private-endpoint-connection show --resource-name {acc} --name {pe_name} --resource-group {rg} --type Microsoft.DocumentDB/databaseAccounts', checks=self.check('name', '{pe_name}')) - self.cmd('network private-endpoint-connection show --resource-name {acc} -n {pe_name} -g {rg} --type Microsoft.DocumentDB/databaseAccounts', + self.cmd('az network private-endpoint-connection show --resource-name {acc} -n {pe_name} -g {rg} --type Microsoft.DocumentDB/databaseAccounts', checks=self.check('name', '{pe_name}')) # Test approval/rejection @@ -731,23 +731,21 @@ def test_private_endpoint_connection_cosmosdb(self, resource_group): 'rejection_desc': 'You are rejected!' }) self.cmd( - 'network private-endpoint-connection approve --resource-name {acc} --resource-group {rg} --name {pe_name} --type Microsoft.DocumentDB/databaseAccounts ' + 'az network private-endpoint-connection approve --resource-name {acc} --resource-group {rg} --name {pe_name} --type Microsoft.DocumentDB/databaseAccounts ' '--description "{approval_desc}"', checks=[ - self.check('properties.privateLinkServiceConnectionState.status', 'Approved'), - self.check('properties.privateLinkServiceConnectionState.description', '{approval_desc}') + self.check('properties.privateLinkServiceConnectionState.status', 'Approved') ]) - self.cmd('network private-endpoint-connection reject --id {pec_id} ' + self.cmd('az network private-endpoint-connection reject --id {pec_id} ' '--description "{rejection_desc}"', checks=[ - self.check('properties.privateLinkServiceConnectionState.status', 'Rejected'), - self.check('properties.privateLinkServiceConnectionState.description', '{rejection_desc}') + self.check('properties.privateLinkServiceConnectionState.status', 'Rejected') ]) - self.cmd('network private-endpoint-connection list --name {acc} --resource-group {rg} --type Microsoft.DocumentDB/databaseAccounts', checks=[ + self.cmd('az network private-endpoint-connection list --name {acc} --resource-group {rg} --type Microsoft.DocumentDB/databaseAccounts', checks=[ self.check('length(@)', 1) ]) # Test delete - self.cmd('network private-endpoint-connection delete --id {pec_id} -y') + self.cmd('az network private-endpoint-connection delete --id {pec_id} -y') class NetworkPrivateLinkWebappScenarioTest(ScenarioTest): diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index c200a52030c..801d932d77a 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -33,7 +33,7 @@ azure-mgmt-containerinstance==1.5.0 azure-mgmt-containerregistry==3.0.0rc14 azure-mgmt-containerservice==9.0.1 azure-mgmt-core==1.0.0 -azure-mgmt-cosmosdb==0.14.0 +azure-mgmt-cosmosdb==0.15.0 azure-mgmt-datalake-analytics==0.2.1 azure-mgmt-datalake-nspkg==3.0.1 azure-mgmt-datalake-store==0.5.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 3c264e8ea98..d856c5b7e01 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -33,7 +33,7 @@ azure-mgmt-containerinstance==1.5.0 azure-mgmt-containerregistry==3.0.0rc14 azure-mgmt-containerservice==9.0.1 azure-mgmt-core==1.0.0 -azure-mgmt-cosmosdb==0.14.0 +azure-mgmt-cosmosdb==0.15.0 azure-mgmt-datalake-analytics==0.2.1 azure-mgmt-datalake-nspkg==3.0.1 azure-mgmt-datalake-store==0.5.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 899838b0dce..4deb2ffaa2c 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -32,7 +32,7 @@ azure-mgmt-containerinstance==1.5.0 azure-mgmt-containerregistry==3.0.0rc14 azure-mgmt-containerservice==9.0.1 azure-mgmt-core==1.0.0 -azure-mgmt-cosmosdb==0.14.0 +azure-mgmt-cosmosdb==0.15.0 azure-mgmt-datalake-analytics==0.2.1 azure-mgmt-datalake-nspkg==3.0.1 azure-mgmt-datalake-store==0.5.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 0790160fd1e..9b698cd32bf 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -76,7 +76,7 @@ 'azure-mgmt-containerinstance~=1.4', 'azure-mgmt-containerregistry==3.0.0rc14', 'azure-mgmt-containerservice~=9.0.1', - 'azure-mgmt-cosmosdb~=0.14.0', + 'azure-mgmt-cosmosdb~=0.15.0', 'azure-mgmt-datalake-analytics~=0.2.1', 'azure-mgmt-datalake-store~=0.5.0', 'azure-mgmt-datamigration~=0.1.0',