From 75a6af8640f3a6683e9c8dad0eb87b4ad13f0c8a Mon Sep 17 00:00:00 2001 From: kevinzz6 <632604666@qq.com> Date: Thu, 30 Jun 2022 16:10:53 +0800 Subject: [PATCH] [Synapse] `az synapse link-connection`: New command group to support synapse link connections (#22876) --- .../synapse/manual/_client_factory.py | 4 + .../command_modules/synapse/manual/_help.py | 172 ++++ .../command_modules/synapse/manual/_params.py | 35 + .../synapse/manual/commands.py | 20 + .../synapse/manual/operations/artifacts.py | 79 +- .../latest/assets/link-connection-table.json | 20 + .../latest/assets/linkconnectionfortest.json | 29 + .../assets/managedprivateendpoints.json | 4 +- .../recordings/test_ip_firewall_rules.yaml | 185 +++-- .../latest/recordings/test_kusto_script.yaml | 374 +++++---- .../recordings/test_link_connection.yaml | 405 +++++++++ .../test_managed_private_endpoints.yaml | 170 ++-- ...l_pool_audit_policy_logentry_eventhub.yaml | 767 ++++++++++-------- .../latest/recordings/test_sql_pool_tde.yaml | 293 +++++-- .../tests/latest/test_synapse_scenario.py | 70 ++ src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 19 files changed, 1882 insertions(+), 753 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/link-connection-table.json create mode 100644 src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/linkconnectionfortest.json create mode 100644 src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_link_connection.yaml diff --git a/src/azure-cli/azure/cli/command_modules/synapse/manual/_client_factory.py b/src/azure-cli/azure/cli/command_modules/synapse/manual/_client_factory.py index 9f267047591..dc75c1cd046 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/manual/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/synapse/manual/_client_factory.py @@ -254,3 +254,7 @@ def cf_kusto_scripts(cli_ctx, workspace_name): def cf_synapse_sql_script(cli_ctx, workspace_name): return cf_synapse_client_artifacts_factory(cli_ctx, workspace_name).sql_script + + +def cf_synapse_link_connection(cli_ctx, workspace_name): + return cf_synapse_client_artifacts_factory(cli_ctx, workspace_name).link_connection diff --git a/src/azure-cli/azure/cli/command_modules/synapse/manual/_help.py b/src/azure-cli/azure/cli/command_modules/synapse/manual/_help.py index cb2384b3026..2b38f7345f7 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/manual/_help.py +++ b/src/azure-cli/azure/cli/command_modules/synapse/manual/_help.py @@ -2272,3 +2272,175 @@ --name testsqlscriptname \\ --file 'path/test.sql' """ + +helps['synapse link-connection'] = """ +type: group +short-summary: Manage Synapse's link connection. +""" + +helps['synapse link-connection list'] = """ +type: command +short-summary: List link connections in a synapse workspace. +examples: + - name: List link connections. + text: |- + az synapse link-connection list --workspace-name testsynapseworkspace +""" + +helps['synapse link-connection show'] = """ +type: command +short-summary: Get a link connection. +examples: + - name: Get a link-connection. + text: |- + az synapse link-connection show --workspace-name testsynapseworkspace \\ + --name testlinkconectionname +""" + +helps['synapse link-connection delete'] = """ +type: command +short-summary: Delete a link connection. +examples: + - name: Delete a link connection. + text: |- + az synapse link-connection delete --workspace-name testsynapseworkspace \\ + --name testlinkconnectionname +""" + +helps['synapse link-connection create'] = """ +type: command +short-summary: Create a link connection. +examples: + - name: Create a link connection. + text: |- + az synapse link-connection create --workspace-name testsynapseworkspace \\ + --name testlinkconnectionname \\ + --file @"path/definition.json" +""" + +helps['synapse link-connection update'] = """ +type: command +short-summary: Update a link connection. +examples: + - name: Update a link connnection. + text: |- + az synapse link-connection update --workspace-name testsynapseworkspace \\ + --name testlinkconnectionname \\ + --file @"path/definition.json" +""" + +helps['synapse link-connection start'] = """ +type: command +short-summary: Start a link connnection. +examples: + - name: Start a link connection. + text: |- + az synapse link-connection start --workspace-name testsynapseworkspace \\ + --name testlinkconnectionname +""" + +helps['synapse link-connection stop'] = """ +type: command +short-summary: Stop a link connection. +examples: + - name: Stop a link connection. + text: |- + az synapse link-connection stop --workspace-name testsynapseworkspace \\ + --name testlinkconnectionname +""" + +helps['synapse link-connection get-status'] = """ +type: command +short-summary: check a link connection status after start/stop a link connection. +examples: + - name: Stop a link connection. + text: |- + az synapse link-connection get-status --workspace-name testsynapseworkspace \\ + --name testlinkconnectionname +""" + +helps['synapse link-connection list-link-tables'] = """ +type: command +short-summary: List the link tables of a link connection. +examples: + - name: List the link tables of a link connection. + text: |- + az synapse link-connection list-link-tables --workspace-name testsynapseworkspace \\ + --name linkconnectionname \\ +""" + +helps['synapse link-connection edit-link-tables'] = """ +type: command +short-summary: Edit tables for a link connection. +examples: + - name: Edit tables for a link connection. + text: |- + az synapse link-connection edit-link-tables --workspace-name testsynapseworkspace \\ + --name linkconnectionname \\ + --file @path/edittablerequestfile.json + the file pattern should be: + { + "linkTables": [ + { + "id": "", + "source": { + "tableName": "", + "schemaName": "" + }, + "target": { + "tableName": "", + "schemaName": "", + "distributionOptions": { + "type": "", + "distributionColumn": "" + } + }, + "operationType": "add" + }, + { + "id": "", + "operationType": "remove" + }, + { + "id": "", + "source": { + "tableName": "", + "schemaName": "" + }, + "target": { + "tableName": "", + "schemaName": "", + "distributionOptions": { + "type": "", + "distributionColumn": "" + } + }, + "operationType": "update" + } + ] + } + +""" + +helps['synapse link-connection get-link-tables-status'] = """ +type: command +short-summary: Query the link table status of a link connection. +examples: + - name: Query the link table status of a link connection. + text: |- + az synapse link-connection get-link-tables-status --workspace-name testsynapseworkspace \\ + --name linkconnectionname \\ + --max-segment-count 50 \\ + --continuation-token token +""" + +helps['synapse link-connection update-landing-zone-credential'] = """ +type: command +short-summary: Update landing zone credetial of a link connection. +examples: + - name: Update landing zone credetial of a link connection. + text: |- + az synapse link-connection update-landing-zone-credential --workspace-name testsynapseworkspace \\ + --name linkconnectionname \\ + --sas-token sastoken +""" diff --git a/src/azure-cli/azure/cli/command_modules/synapse/manual/_params.py b/src/azure-cli/azure/cli/command_modules/synapse/manual/_params.py index ceeddc57318..56527cd638f 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/manual/_params.py +++ b/src/azure-cli/azure/cli/command_modules/synapse/manual/_params.py @@ -1100,3 +1100,38 @@ def load_arguments(self, _): c.argument('workspace_name', arg_type=workspace_name_arg_type, help='The name of the workspace') c.argument('output_folder', type=str, help='The name of the output folder') c.argument('script_name', arg_type=name_type, help='The name of the KQL script.') + + # synapse link connections + with self.argument_context('synapse link-connection list') as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type) + + for scope in ['create', 'update']: + with self.argument_context('synapse link-connection ' + scope) as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type) + c.argument('link_connection_name', arg_type=name_type, help='The link connection name.') + c.argument('definition_file', arg_type=definition_file_arg_type) + + for scope in ['show', 'delete', 'get-status', 'start', 'stop']: + with self.argument_context('synapse link-connection ' + scope) as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type) + c.argument('link_connection_name', arg_type=name_type, help='The link connection name.') + + with self.argument_context('synapse link-connection list-link-tables') as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type) + c.argument('link_connection_name', arg_type=name_type, help='The link connection name.') + + with self.argument_context('synapse link-connection edit-link-tables') as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type) + c.argument('link_connection_name', arg_type=name_type, help='The link connection name.') + c.argument('definition_file', arg_type=definition_file_arg_type, options_list=['--file', '-f'], type=shell_safe_json_parse, + help='The Edit link-tables file path, The file format can be viewed using --help.') + + with self.argument_context('synapse link-connection get-link-tables-status') as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type) + c.argument('link_connection_name', arg_type=name_type, help='The link connection name.') + c.argument('max_segment_count', help='Max segment count to query table status.') + c.argument('continuation_token', help='Continuation token to query table status.') + with self.argument_context('synapse link-connection update-landing-zone-credential') as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type) + c.argument('link_connection_name', arg_type=name_type, help='The link connection name.') + c.argument('sas_token', help='Value of secure string.') diff --git a/src/azure-cli/azure/cli/command_modules/synapse/manual/commands.py b/src/azure-cli/azure/cli/command_modules/synapse/manual/commands.py index 5fad886c042..2eac338bd01 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/manual/commands.py +++ b/src/azure-cli/azure/cli/command_modules/synapse/manual/commands.py @@ -207,6 +207,11 @@ def get_custom_sdk(custom_module, client_factory): client_factory=cf_kusto_script, ) + synapse_link_connection_sdk = CliCommandType( + operations_tmpl='azure.synapse.artifacts.operations#linkconnectionOperations.{}', + client_factory=None, + ) + # Management Plane Commands --Workspace with self.command_group('synapse workspace', command_type=synapse_workspace_sdk, custom_command_type=get_custom_sdk('workspace', cf_synapse_client_workspace_factory), @@ -577,3 +582,18 @@ def get_custom_sdk(custom_module, client_factory): g.custom_command('list', 'synapse_kusto_script_list', client_factory=cf_kusto_scripts) g.custom_command('export', 'synapse_kusto_script_export') g.custom_wait_command('wait', 'synapse_kusto_script_show') + + with self.command_group('synapse link-connection', synapse_link_connection_sdk, + custom_command_type=get_custom_sdk('artifacts', None)) as g: + g.custom_command('list', 'list_link_connection') + g.custom_show_command('show', 'get_link_connection') + g.custom_command('delete', 'delete_link_connection') + g.custom_command('create', 'create_or_update_link_connection') + g.custom_command('update', 'create_or_update_link_connection') + g.custom_command('get-status', 'get_link_connection_status') + g.custom_command('start ', 'start_link_connection') + g.custom_command('stop', 'stop_link_connection') + g.custom_command('list-link-tables', 'synapse_list_link_table') + g.custom_command('edit-link-tables', 'synapse_edit_link_table') + g.custom_command('get-link-tables-status', 'synapse_get_link_tables_status') + g.custom_command('update-landing-zone-credential', 'synapse_update_landing_zone_credential') diff --git a/src/azure-cli/azure/cli/command_modules/synapse/manual/operations/artifacts.py b/src/azure-cli/azure/cli/command_modules/synapse/manual/operations/artifacts.py index a07b2ac13c3..1ab6ad0bdc1 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/manual/operations/artifacts.py +++ b/src/azure-cli/azure/cli/command_modules/synapse/manual/operations/artifacts.py @@ -10,13 +10,15 @@ Trigger, DataFlow, BigDataPoolReference, NotebookSessionProperties, NotebookResource, SparkJobDefinition, SqlScriptResource, SqlScriptFolder, SqlScriptContent, SqlScriptMetadata, SqlScript, SqlConnection, - NotebookFolder) + NotebookFolder, LinkConnectionResource, LinkTableRequest, + QueryTableStatusRequest, SecureString) from azure.cli.core.util import sdk_no_wait, CLIError from azure.core.exceptions import ResourceNotFoundError from .._client_factory import (cf_synapse_linked_service, cf_synapse_dataset, cf_synapse_pipeline, cf_synapse_pipeline_run, cf_synapse_trigger, cf_synapse_trigger_run, cf_synapse_data_flow, cf_synapse_notebook, cf_synapse_spark_pool, - cf_synapse_spark_job_definition, cf_synapse_library, cf_synapse_sql_script) + cf_synapse_spark_job_definition, cf_synapse_library, cf_synapse_sql_script, + cf_synapse_link_connection) from ..constant import EXECUTOR_SIZE, SPARK_SERVICE_ENDPOINT_API_VERSION @@ -552,3 +554,76 @@ def export_sql_script(cmd, workspace_name, output_folder, sql_script_name=None): from azure.cli.core.azclierror import InvalidArgumentValueError err_msg = 'Unable to export to file: {}'.format(path) raise InvalidArgumentValueError(err_msg) + + +def list_link_connection(cmd, workspace_name): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + return client.list_link_connections_by_workspace() + + +def get_link_connection(cmd, workspace_name, link_connection_name): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + return client.get_link_connection(link_connection_name) + + +def create_or_update_link_connection(cmd, workspace_name, link_connection_name, definition_file): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + info = definition_file['properties'] + properties_file = {} + properties_file['sourceDatabase'] = info['sourceDatabase'] + properties_file['targetDatabase'] = info['targetDatabase'] + properties_file['compute'] = info['compute'] + if 'landingZone' in properties_file: + properties_file['landingZone'] = info['landingZone'] + properties = LinkConnectionResource(properties=properties_file) + return client.create_or_update_link_connection(link_connection_name, properties) + + +def delete_link_connection(cmd, workspace_name, link_connection_name): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + return client.delete_link_connection(link_connection_name) + + +def get_link_connection_status(cmd, workspace_name, link_connection_name): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + return client.get_detailed_status(link_connection_name) + + +def start_link_connection(cmd, workspace_name, link_connection_name): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + return client.start(link_connection_name) + + +def stop_link_connection(cmd, workspace_name, link_connection_name): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + return client.stop(link_connection_name) + + +def synapse_list_link_table(cmd, workspace_name, link_connection_name): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + return client.list_link_tables(link_connection_name).value + + +def synapse_edit_link_table(cmd, workspace_name, link_connection_name, definition_file): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + linkTableRequset_list = [] + for i in range(0, len(definition_file['linkTables'])): + linkTableRequset = LinkTableRequest.from_dict(definition_file['linkTables'][i]) + linkTableRequset_list.append(linkTableRequset) + return client.edit_tables(link_connection_name, linkTableRequset_list) + + +def synapse_get_link_tables_status(cmd, workspace_name, link_connection_name, max_segment_count=50, + continuation_token=None): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + query_table_status_request = QueryTableStatusRequest( + max_segment_count=max_segment_count, + continuation_token=continuation_token + ) + return client.query_table_status(link_connection_name, query_table_status_request) + + +def synapse_update_landing_zone_credential(cmd, workspace_name, link_connection_name, sas_token): + client = cf_synapse_link_connection(cmd.cli_ctx, workspace_name) + sas_tokens = SecureString(value=sas_token) + return client.update_landing_zone_credential(link_connection_name, sas_tokens) diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/link-connection-table.json b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/link-connection-table.json new file mode 100644 index 00000000000..08bbbb9a42d --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/link-connection-table.json @@ -0,0 +1,20 @@ +{ + "linkTables": [ + { + "id": "887e9d4df0fa4afaaad0d7a2c7f42d88", + "source": { + "schemaName": "dbo", + "tableName": "weather_history_300000_rows" + }, + "target": { + "distributionOptions": { + "distributionColumn": null, + "type": "Round_RoBin" + }, + "schemaName": "dbo", + "tableName": "weather_history_300000_rows" + }, + "operationType": "add" + } + ] +} \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/linkconnectionfortest.json b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/linkconnectionfortest.json new file mode 100644 index 00000000000..3e222ee15cc --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/linkconnectionfortest.json @@ -0,0 +1,29 @@ +{ + "name": "linkconnectionfortest", + "properties": { + "sourceDatabase": { + "typeProperties": { + "resourceId": "/subscriptions/364ed646-43dd-42ab-9b95-ddbed98d5595/resourceGroups/CDC_DEVINT_BRS/providers/Microsoft.Sql/servers/adfcdctestbrs-1", + "principalId": "fdf7f09c-68ef-4e13-98df-f0e92f8d976e" + }, + "linkedService": { + "referenceName": "AzureSqlDatabase1", + "type": "LinkedServiceReference" + } + }, + "targetDatabase": { + "typeProperties": {}, + "linkedService": { + "referenceName": "xiaoyuxingtestne-WorkspaceDefaultSqlServer", + "type": "LinkedServiceReference", + "parameters": { + "DBName": "v2" + } + } + }, + "compute": { + "coreCount": 16, + "computeType": "General" + } + } +} \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/managedprivateendpoints.json b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/managedprivateendpoints.json index 737db88fbb8..ae0c9fb4504 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/managedprivateendpoints.json +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/managedprivateendpoints.json @@ -1,4 +1,4 @@ { - "privateLinkResourceId": "/subscriptions/00001111-0000-0000-0000-000011112222/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/test", - "groupId": "dfs" + "privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/test", + "groupId": "blob" } \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_ip_firewall_rules.yaml b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_ip_firewall_rules.yaml index 0e0c46ff1ef..ff4cf7cb8e3 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_ip_firewall_rules.yaml +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_ip_firewall_rules.yaml @@ -21,15 +21,15 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-e65ee4d2-3b3c-41f6-8206-dcc3bfc84886","privateEndpointConnections":[],"workspaceUID":"13f75869-e58b-47c6-9131-6a05d967bfa7","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"247661fc-7fdf-4074-8b49-36ce1300a3d8"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-97731da1-cf65-4546-8ecb-67f2e0bbf426","privateEndpointConnections":[],"workspaceUID":"e16241e1-c7b6-48b6-b45d-981bdf284f4a","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"cf3cf1b2-a8b3-4064-87e6-36384310eda6"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/115fb9b2-7cdf-4b92-baaf-37d59f8ad6c2?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/35a5c86a-86fa-4797-9135-229430646f7a?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -37,7 +37,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:38:01 GMT + - Wed, 29 Jun 2022 08:25:27 GMT expires: - '-1' pragma: @@ -68,9 +68,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/115fb9b2-7cdf-4b92-baaf-37d59f8ad6c2?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/35a5c86a-86fa-4797-9135-229430646f7a?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:38:33 GMT + - Wed, 29 Jun 2022 08:25:57 GMT expires: - '-1' pragma: @@ -115,9 +115,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/115fb9b2-7cdf-4b92-baaf-37d59f8ad6c2?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/35a5c86a-86fa-4797-9135-229430646f7a?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:39:05 GMT + - Wed, 29 Jun 2022 08:26:29 GMT expires: - '-1' pragma: @@ -162,9 +162,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/115fb9b2-7cdf-4b92-baaf-37d59f8ad6c2?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/35a5c86a-86fa-4797-9135-229430646f7a?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -176,7 +176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:39:36 GMT + - Wed, 29 Jun 2022 08:26:59 GMT expires: - '-1' pragma: @@ -209,9 +209,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/115fb9b2-7cdf-4b92-baaf-37d59f8ad6c2?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/35a5c86a-86fa-4797-9135-229430646f7a?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -223,7 +223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:40:08 GMT + - Wed, 29 Jun 2022 08:27:30 GMT expires: - '-1' pragma: @@ -256,9 +256,56 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/115fb9b2-7cdf-4b92-baaf-37d59f8ad6c2?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/35a5c86a-86fa-4797-9135-229430646f7a?api-version=2021-06-01 + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 29 Jun 2022 08:28:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse workspace create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/35a5c86a-86fa-4797-9135-229430646f7a?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -270,7 +317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:40:39 GMT + - Wed, 29 Jun 2022 08:28:31 GMT expires: - '-1' pragma: @@ -303,12 +350,12 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-e65ee4d2-3b3c-41f6-8206-dcc3bfc84886","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"13f75869-e58b-47c6-9131-6a05d967bfa7","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"247661fc-7fdf-4074-8b49-36ce1300a3d8"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-97731da1-cf65-4546-8ecb-67f2e0bbf426","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"e16241e1-c7b6-48b6-b45d-981bdf284f4a","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"cf3cf1b2-a8b3-4064-87e6-36384310eda6"}}' headers: cache-control: - no-cache @@ -317,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:40:41 GMT + - Wed, 29 Jun 2022 08:28:31 GMT expires: - '-1' pragma: @@ -353,7 +400,7 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/checkNameAvailability?api-version=2021-06-01 response: @@ -367,7 +414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:40:47 GMT + - Wed, 29 Jun 2022 08:28:34 GMT expires: - '-1' pragma: @@ -405,7 +452,7 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --start-ip-address --end-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/firewallRules/rule000003?api-version=2021-06-01 response: @@ -417,7 +464,7 @@ interactions: access-control-expose-headers: - Location azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/15a579b2-2717-401c-8066-847a25e7b6d7?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/73a497bb-1d9b-4e1a-81b7-c50c68ebab95?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -425,11 +472,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:40:57 GMT + - Wed, 29 Jun 2022 08:28:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/15a579b2-2717-401c-8066-847a25e7b6d7?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/73a497bb-1d9b-4e1a-81b7-c50c68ebab95?api-version=2021-06-01 pragma: - no-cache server: @@ -439,7 +486,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -457,9 +504,9 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --start-ip-address --end-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/15a579b2-2717-401c-8066-847a25e7b6d7?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/73a497bb-1d9b-4e1a-81b7-c50c68ebab95?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -471,7 +518,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:41:59 GMT + - Wed, 29 Jun 2022 08:29:09 GMT expires: - '-1' pragma: @@ -480,10 +527,6 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -503,9 +546,9 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --start-ip-address --end-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/15a579b2-2717-401c-8066-847a25e7b6d7?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/73a497bb-1d9b-4e1a-81b7-c50c68ebab95?api-version=2021-06-01 response: body: string: '{"properties":{"provisioningState":"Succeeded","startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/firewallRules/rule000003","name":"rule000003","type":"Microsoft.Synapse/workspaces/firewallRules"}' @@ -517,7 +560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:42:00 GMT + - Wed, 29 Jun 2022 08:29:09 GMT expires: - '-1' pragma: @@ -526,10 +569,6 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -549,7 +588,7 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/firewallRules/rule000003?api-version=2021-06-01 response: @@ -563,7 +602,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:42:08 GMT + - Wed, 29 Jun 2022 08:29:12 GMT expires: - '-1' pragma: @@ -595,7 +634,7 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --start-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/firewallRules/rule000003?api-version=2021-06-01 response: @@ -609,7 +648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:42:13 GMT + - Wed, 29 Jun 2022 08:29:14 GMT expires: - '-1' pragma: @@ -645,7 +684,7 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --start-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/firewallRules/rule000003?api-version=2021-06-01 response: @@ -657,7 +696,7 @@ interactions: access-control-expose-headers: - Location azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/9eb89a74-79cb-4e06-9377-757ff299b0d6?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/e29a9024-895a-40ee-8861-7e4569bade67?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -665,11 +704,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:42:14 GMT + - Wed, 29 Jun 2022 08:29:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/9eb89a74-79cb-4e06-9377-757ff299b0d6?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/e29a9024-895a-40ee-8861-7e4569bade67?api-version=2021-06-01 pragma: - no-cache server: @@ -679,7 +718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -697,9 +736,9 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --start-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/9eb89a74-79cb-4e06-9377-757ff299b0d6?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/e29a9024-895a-40ee-8861-7e4569bade67?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -711,7 +750,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:42:45 GMT + - Wed, 29 Jun 2022 08:29:46 GMT expires: - '-1' pragma: @@ -743,9 +782,9 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --start-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/9eb89a74-79cb-4e06-9377-757ff299b0d6?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/e29a9024-895a-40ee-8861-7e4569bade67?api-version=2021-06-01 response: body: string: '{"properties":{"provisioningState":"Succeeded","startIpAddress":"192.0.0.1","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/firewallRules/rule000003","name":"rule000003","type":"Microsoft.Synapse/workspaces/firewallRules"}' @@ -757,7 +796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:42:47 GMT + - Wed, 29 Jun 2022 08:29:47 GMT expires: - '-1' pragma: @@ -789,7 +828,7 @@ interactions: ParameterSetName: - --workspace-name --resource-group User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/firewallRules?api-version=2021-06-01 response: @@ -803,7 +842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:42:52 GMT + - Wed, 29 Jun 2022 08:29:51 GMT expires: - '-1' pragma: @@ -837,7 +876,7 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/firewallRules/rule000003?api-version=2021-06-01 response: @@ -849,17 +888,17 @@ interactions: access-control-expose-headers: - Location azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/bb9602aa-eb51-45b8-93ee-f17099837403?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/c442edfe-1dec-451f-b2cc-0e73cbc6214e?api-version=2021-06-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 30 May 2022 06:42:58 GMT + - Wed, 29 Jun 2022 08:29:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/bb9602aa-eb51-45b8-93ee-f17099837403?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/c442edfe-1dec-451f-b2cc-0e73cbc6214e?api-version=2021-06-01 pragma: - no-cache server: @@ -869,7 +908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -887,9 +926,9 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/bb9602aa-eb51-45b8-93ee-f17099837403?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/c442edfe-1dec-451f-b2cc-0e73cbc6214e?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -901,7 +940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:43:30 GMT + - Wed, 29 Jun 2022 08:30:25 GMT expires: - '-1' pragma: @@ -933,9 +972,9 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --yes User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/bb9602aa-eb51-45b8-93ee-f17099837403?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/c442edfe-1dec-451f-b2cc-0e73cbc6214e?api-version=2021-06-01 response: body: string: '' @@ -943,7 +982,7 @@ interactions: cache-control: - no-cache date: - - Mon, 30 May 2022 06:43:32 GMT + - Wed, 29 Jun 2022 08:30:25 GMT expires: - '-1' pragma: @@ -971,7 +1010,7 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/firewallRules/rule000003?api-version=2021-06-01 response: @@ -985,7 +1024,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 06:43:58 GMT + - Wed, 29 Jun 2022 08:30:49 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_kusto_script.yaml b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_kusto_script.yaml index 6982898a0b9..2438d6f1fae 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_kusto_script.yaml +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_kusto_script.yaml @@ -21,15 +21,15 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-dc6bab2e-d182-45f3-8500-e363b0013030","privateEndpointConnections":[],"workspaceUID":"9a1bb14c-4946-4d7e-8258-3748c0465226","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"a66647a3-196e-410d-90fd-e096be38b325"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-989c25e5-7d98-405b-a608-a0f18e6d8647","privateEndpointConnections":[],"workspaceUID":"36dce2ec-4bc0-4e05-a4d3-bdebf712bd5d","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"7a4d14d3-cee3-4a01-85b3-7a88e8178ae2"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/70b48967-f1db-40f4-8db3-0cc8ce847980?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/764f3e54-160d-4278-9562-893e1921ebc7?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -37,7 +37,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:04:53 GMT + - Wed, 29 Jun 2022 08:40:52 GMT expires: - '-1' pragma: @@ -49,7 +49,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -68,9 +68,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/70b48967-f1db-40f4-8db3-0cc8ce847980?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/764f3e54-160d-4278-9562-893e1921ebc7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:05:24 GMT + - Wed, 29 Jun 2022 08:41:23 GMT expires: - '-1' pragma: @@ -115,9 +115,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/70b48967-f1db-40f4-8db3-0cc8ce847980?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/764f3e54-160d-4278-9562-893e1921ebc7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:05:54 GMT + - Wed, 29 Jun 2022 08:41:54 GMT expires: - '-1' pragma: @@ -162,9 +162,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/70b48967-f1db-40f4-8db3-0cc8ce847980?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/764f3e54-160d-4278-9562-893e1921ebc7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -176,7 +176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:06:24 GMT + - Wed, 29 Jun 2022 08:42:24 GMT expires: - '-1' pragma: @@ -209,9 +209,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/70b48967-f1db-40f4-8db3-0cc8ce847980?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/764f3e54-160d-4278-9562-893e1921ebc7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -223,7 +223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:06:55 GMT + - Wed, 29 Jun 2022 08:42:55 GMT expires: - '-1' pragma: @@ -256,9 +256,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/70b48967-f1db-40f4-8db3-0cc8ce847980?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/764f3e54-160d-4278-9562-893e1921ebc7?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:07:25 GMT + - Wed, 29 Jun 2022 08:43:26 GMT expires: - '-1' pragma: @@ -303,12 +303,12 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-dc6bab2e-d182-45f3-8500-e363b0013030","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"9a1bb14c-4946-4d7e-8258-3748c0465226","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"a66647a3-196e-410d-90fd-e096be38b325"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-989c25e5-7d98-405b-a608-a0f18e6d8647","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"36dce2ec-4bc0-4e05-a4d3-bdebf712bd5d","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"7a4d14d3-cee3-4a01-85b3-7a88e8178ae2"}}' headers: cache-control: - no-cache @@ -317,7 +317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:07:26 GMT + - Wed, 29 Jun 2022 08:43:26 GMT expires: - '-1' pragma: @@ -353,7 +353,7 @@ interactions: ParameterSetName: - --resource-group --name --workspace-name --start-ip-address --end-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/firewallRules/allowAll?api-version=2021-06-01 response: @@ -365,7 +365,7 @@ interactions: access-control-expose-headers: - Location azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/5e2fa1a9-679e-49b6-9041-abcba6e4bed6?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c5569f34-65aa-43fa-9156-0e4225b6fc9d?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -373,11 +373,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:07:28 GMT + - Wed, 29 Jun 2022 08:43:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/5e2fa1a9-679e-49b6-9041-abcba6e4bed6?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/c5569f34-65aa-43fa-9156-0e4225b6fc9d?api-version=2021-06-01 pragma: - no-cache server: @@ -387,7 +387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -405,9 +405,9 @@ interactions: ParameterSetName: - --resource-group --name --workspace-name --start-ip-address --end-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/5e2fa1a9-679e-49b6-9041-abcba6e4bed6?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c5569f34-65aa-43fa-9156-0e4225b6fc9d?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -419,7 +419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:07:58 GMT + - Wed, 29 Jun 2022 08:44:01 GMT expires: - '-1' pragma: @@ -451,9 +451,9 @@ interactions: ParameterSetName: - --resource-group --name --workspace-name --start-ip-address --end-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/5e2fa1a9-679e-49b6-9041-abcba6e4bed6?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/c5569f34-65aa-43fa-9156-0e4225b6fc9d?api-version=2021-06-01 response: body: string: '{"properties":{"provisioningState":"Succeeded","startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/firewallRules/allowAll","name":"allowAll","type":"Microsoft.Synapse/workspaces/firewallRules"}' @@ -465,7 +465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:07:58 GMT + - Wed, 29 Jun 2022 08:44:01 GMT expires: - '-1' pragma: @@ -501,7 +501,7 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/checkNameAvailability?api-version=2021-06-01 response: @@ -515,7 +515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:08:21 GMT + - Wed, 29 Jun 2022 08:44:25 GMT expires: - '-1' pragma: @@ -524,10 +524,6 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: @@ -550,12 +546,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-dc6bab2e-d182-45f3-8500-e363b0013030","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"9a1bb14c-4946-4d7e-8258-3748c0465226","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"a66647a3-196e-410d-90fd-e096be38b325"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-989c25e5-7d98-405b-a608-a0f18e6d8647","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"36dce2ec-4bc0-4e05-a4d3-bdebf712bd5d","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"7a4d14d3-cee3-4a01-85b3-7a88e8178ae2"}}' headers: cache-control: - no-cache @@ -564,7 +560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:08:22 GMT + - Wed, 29 Jun 2022 08:44:27 GMT expires: - '-1' pragma: @@ -585,7 +581,7 @@ interactions: - request: body: '{"location": "eastus", "sku": {"name": "Storage optimized", "capacity": 2, "size": "Medium"}, "properties": {"enableStreamingIngest": true, "enablePurge": - true, "workspaceUID": "9a1bb14c-4946-4d7e-8258-3748c0465226"}}' + true, "workspaceUID": "36dce2ec-4bc0-4e05-a4d3-bdebf712bd5d"}}' headers: Accept: - application/json @@ -603,16 +599,16 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003?api-version=2021-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003","name":"clitest000007/testkstpool000003","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"\"","location":"eastus","sku":{"name":"Storage - optimized","size":"Medium","capacity":2},"properties":{"state":"Creating","enableStreamingIngest":true,"enablePurge":true,"workspaceUID":"9a1bb14c-4946-4d7e-8258-3748c0465226","provisioningState":"Creating"}}' + optimized","size":"Medium","capacity":2},"properties":{"state":"Creating","enableStreamingIngest":true,"enablePurge":true,"workspaceUID":"36dce2ec-4bc0-4e05-a4d3-bdebf712bd5d","provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview cache-control: - no-cache content-length: @@ -620,7 +616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:08:31 GMT + - Wed, 29 Jun 2022 08:44:36 GMT etag: - '""' expires: @@ -634,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 201 message: Created @@ -653,12 +649,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:08:31.4166777Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:44:35.6553783Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -667,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:09:02 GMT + - Wed, 29 Jun 2022 08:45:06 GMT expires: - '-1' pragma: @@ -700,12 +696,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:08:31.4166777Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:44:35.6553783Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -714,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:09:33 GMT + - Wed, 29 Jun 2022 08:45:37 GMT expires: - '-1' pragma: @@ -747,12 +743,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:08:31.4166777Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:44:35.6553783Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -761,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:10:03 GMT + - Wed, 29 Jun 2022 08:46:07 GMT expires: - '-1' pragma: @@ -794,12 +790,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:44:35.6553783Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -808,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:10:33 GMT + - Wed, 29 Jun 2022 08:46:38 GMT expires: - '-1' pragma: @@ -841,12 +837,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -855,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:11:03 GMT + - Wed, 29 Jun 2022 08:47:07 GMT expires: - '-1' pragma: @@ -888,12 +884,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -902,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:11:34 GMT + - Wed, 29 Jun 2022 08:47:38 GMT expires: - '-1' pragma: @@ -935,12 +931,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -949,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:12:04 GMT + - Wed, 29 Jun 2022 08:48:09 GMT expires: - '-1' pragma: @@ -982,12 +978,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -996,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:12:35 GMT + - Wed, 29 Jun 2022 08:48:39 GMT expires: - '-1' pragma: @@ -1029,12 +1025,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1043,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:13:06 GMT + - Wed, 29 Jun 2022 08:49:10 GMT expires: - '-1' pragma: @@ -1076,12 +1072,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1090,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:13:36 GMT + - Wed, 29 Jun 2022 08:49:40 GMT expires: - '-1' pragma: @@ -1123,12 +1119,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1137,7 +1133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:14:06 GMT + - Wed, 29 Jun 2022 08:50:11 GMT expires: - '-1' pragma: @@ -1170,12 +1166,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1184,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:14:37 GMT + - Wed, 29 Jun 2022 08:50:41 GMT expires: - '-1' pragma: @@ -1217,12 +1213,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1231,7 +1227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:15:08 GMT + - Wed, 29 Jun 2022 08:51:12 GMT expires: - '-1' pragma: @@ -1264,12 +1260,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1278,7 +1274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:15:38 GMT + - Wed, 29 Jun 2022 08:51:42 GMT expires: - '-1' pragma: @@ -1311,12 +1307,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1325,7 +1321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:16:08 GMT + - Wed, 29 Jun 2022 08:52:12 GMT expires: - '-1' pragma: @@ -1358,12 +1354,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1372,7 +1368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:16:39 GMT + - Wed, 29 Jun 2022 08:52:43 GMT expires: - '-1' pragma: @@ -1405,12 +1401,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1419,7 +1415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:17:10 GMT + - Wed, 29 Jun 2022 08:53:13 GMT expires: - '-1' pragma: @@ -1452,12 +1448,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1466,7 +1462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:17:40 GMT + - Wed, 29 Jun 2022 08:53:44 GMT expires: - '-1' pragma: @@ -1499,12 +1495,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1513,7 +1509,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:18:11 GMT + - Wed, 29 Jun 2022 08:54:15 GMT expires: - '-1' pragma: @@ -1546,12 +1542,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1560,7 +1556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:18:42 GMT + - Wed, 29 Jun 2022 08:54:45 GMT expires: - '-1' pragma: @@ -1593,12 +1589,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Running","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:10:30.6740213Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Running","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:47:05.9310177Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1607,7 +1603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:19:12 GMT + - Wed, 29 Jun 2022 08:55:15 GMT expires: - '-1' pragma: @@ -1640,12 +1636,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/b35176d6-7641-4be7-9abe-065b0ab7c39d","name":"b35176d6-7641-4be7-9abe-065b0ab7c39d","status":"Succeeded","startTime":"2022-05-26T11:08:31.4166777Z","endTime":"2022-05-26T11:19:20.7999697Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"9b91b7cd-2c28-414a-990c-05e23bd9227a","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/1ae5d577-357f-454c-ac00-7f130ad859e9","name":"1ae5d577-357f-454c-ac00-7f130ad859e9","status":"Succeeded","startTime":"2022-06-29T08:44:35.6553783Z","endTime":"2022-06-29T08:55:32.8071196Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d4df8cf9-48a3-4a96-b9f7-6274e36cc88b","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache @@ -1654,7 +1650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:19:42 GMT + - Wed, 29 Jun 2022 08:55:46 GMT expires: - '-1' pragma: @@ -1687,13 +1683,13 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003","name":"clitest000007/testkstpool000003","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2022-05-26T11:19:20.5812133Z\"","location":"East - US","sku":{"name":"Storage optimized","size":"Medium","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testkstpool000003.clitest000007.kusto.azuresynapse.net","dataIngestionUri":"https://ingest-testkstpool000003.clitest000007.kusto.azuresynapse.net","optimizedAutoscale":null,"enableStreamingIngest":true,"languageExtensions":{"value":[]},"enablePurge":true,"workspaceUID":"9a1bb14c-4946-4d7e-8258-3748c0465226","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003","name":"clitest000007/testkstpool000003","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2022-06-29T08:55:30.6195449Z\"","location":"East + US","sku":{"name":"Storage optimized","size":"Medium","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testkstpool000003.clitest000007.kusto.azuresynapse.net","dataIngestionUri":"https://ingest-testkstpool000003.clitest000007.kusto.azuresynapse.net","optimizedAutoscale":null,"enableStreamingIngest":true,"languageExtensions":{"value":[]},"enablePurge":true,"workspaceUID":"36dce2ec-4bc0-4e05-a4d3-bdebf712bd5d","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1702,9 +1698,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:19:42 GMT + - Wed, 29 Jun 2022 08:55:47 GMT etag: - - '"2022-05-26T11:19:20.5812133Z"' + - '"2022-06-29T08:55:30.6195449Z"' expires: - '-1' pragma: @@ -1741,7 +1737,7 @@ interactions: ParameterSetName: - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004?api-version=2021-06-01-preview response: @@ -1749,7 +1745,7 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/Databases/testdtabase000004","name":"clitest000007/testkstpool000003/testdtabase000004","type":"Microsoft.Synapse/workspaces/kustoPools/Databases","location":"eastus","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/9dc19744-04bc-4c57-af97-6c8b1eb69c91?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/8b673335-e917-4357-82a3-5f3ff8e705ec?api-version=2021-06-01-preview cache-control: - no-cache content-length: @@ -1757,7 +1753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:19:45 GMT + - Wed, 29 Jun 2022 08:55:51 GMT expires: - '-1' pragma: @@ -1769,7 +1765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -1787,12 +1783,12 @@ interactions: ParameterSetName: - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/9dc19744-04bc-4c57-af97-6c8b1eb69c91?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/8b673335-e917-4357-82a3-5f3ff8e705ec?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/9dc19744-04bc-4c57-af97-6c8b1eb69c91","name":"9dc19744-04bc-4c57-af97-6c8b1eb69c91","status":"Succeeded","startTime":"2022-05-26T11:19:45.8840146Z","endTime":"2022-05-26T11:19:48.4154103Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"e13f8db2-8683-4792-95b0-a274ad09b29f","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/8b673335-e917-4357-82a3-5f3ff8e705ec","name":"8b673335-e917-4357-82a3-5f3ff8e705ec","status":"Succeeded","startTime":"2022-06-29T08:55:51.7603665Z","endTime":"2022-06-29T08:55:53.1822851Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"1d8fdcf7-caed-4815-b0c9-91d3a6cc679e","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache @@ -1801,7 +1797,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:16 GMT + - Wed, 29 Jun 2022 08:56:22 GMT expires: - '-1' pragma: @@ -1833,7 +1829,7 @@ interactions: ParameterSetName: - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004?api-version=2021-06-01-preview response: @@ -1848,7 +1844,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:16 GMT + - Wed, 29 Jun 2022 08:56:23 GMT expires: - '-1' pragma: @@ -1882,12 +1878,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://clitest000007.dev.azuresynapse.net/kqlScripts/scriptname000005?api-version=2021-11-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlScripts/scriptname000005","recordId":4210079,"state":"Creating","created":"2022-05-26T11:20:19.0866667Z","changed":"2022-05-26T11:20:19.0866667Z","type":"KqlScript","name":"scriptname000005","operationId":"21e2511d-d6f0-43f6-979c-f2e6367d51a7","artifactId":"E391D6DB-61A2-46D7-B990-E88E660D1E01"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlScripts/scriptname000005","recordId":4481762,"state":"Creating","created":"2022-06-29T08:56:26.1433333Z","changed":"2022-06-29T08:56:26.1433333Z","type":"KqlScript","name":"scriptname000005","operationId":"9ffa18d7-1a42-4a2b-bb2f-3ba8a4d46968","artifactId":"718C7D62-939A-40E5-8D45-39D45FB3E8D7"}' headers: access-control-allow-headers: - Location @@ -1900,9 +1896,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:18 GMT + - Wed, 29 Jun 2022 08:56:25 GMT location: - - https://clitest000007.dev.azuresynapse.net/operationResults/21e2511d-d6f0-43f6-979c-f2e6367d51a7?api-version=2021-11-01-preview + - https://clitest000007.dev.azuresynapse.net/operationResults/9ffa18d7-1a42-4a2b-bb2f-3ba8a4d46968?api-version=2021-11-01-preview server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1920,23 +1916,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://clitest000007.dev.azuresynapse.net/operationResults/21e2511d-d6f0-43f6-979c-f2e6367d51a7?api-version=2021-11-01-preview + uri: https://clitest000007.dev.azuresynapse.net/operationResults/9ffa18d7-1a42-4a2b-bb2f-3ba8a4d46968?api-version=2021-11-01-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlscripts/scriptname000005\",\n \ \"name\": \"scriptname000005\",\n \"type\": \"Microsoft.Synapse/workspaces/kqlscripts\",\n \ \"properties\": {\n \"content\": {\n \"query\": \"Logs | where TimeStamp > ago(1h) | take 10\",\n \"metadata\": {\n \"language\": \"kql\"\n - \ },\n \"currentConnection\": {}\n }\n },\n \"etag\": \"4300237d-0000-0100-0000-628f62770000\"\n}" + \ },\n \"currentConnection\": {}\n }\n },\n \"etag\": \"2a007fa9-0000-0100-0000-62bc13ba0000\"\n}" headers: content-length: - '504' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:29 GMT + - Wed, 29 Jun 2022 08:56:36 GMT server: - Kestrel Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1960,12 +1956,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://clitest000007.dev.azuresynapse.net/kqlScripts/scriptname2000006?api-version=2021-11-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlScripts/scriptname2000006","recordId":4210085,"state":"Creating","created":"2022-05-26T11:20:31.08Z","changed":"2022-05-26T11:20:31.08Z","type":"KqlScript","name":"scriptname2000006","operationId":"01492a4f-e8cf-464f-928b-971b77fbced2","artifactId":"3F856BC3-4922-4A4E-BF61-1E2F8135FF2E"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlScripts/scriptname2000006","recordId":4481764,"state":"Creating","created":"2022-06-29T08:56:38.0866667Z","changed":"2022-06-29T08:56:38.0866667Z","type":"KqlScript","name":"scriptname2000006","operationId":"87f794e5-dfc9-430f-924b-e756672e99b0","artifactId":"31AC8C82-843D-4543-9CD1-2B52410E61F0"}' headers: access-control-allow-headers: - Location @@ -1974,13 +1970,13 @@ interactions: - Location - Retry-After content-length: - - '436' + - '446' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:30 GMT + - Wed, 29 Jun 2022 08:56:37 GMT location: - - https://clitest000007.dev.azuresynapse.net/operationResults/01492a4f-e8cf-464f-928b-971b77fbced2?api-version=2021-11-01-preview + - https://clitest000007.dev.azuresynapse.net/operationResults/87f794e5-dfc9-430f-924b-e756672e99b0?api-version=2021-11-01-preview server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1998,9 +1994,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://clitest000007.dev.azuresynapse.net/operationResults/01492a4f-e8cf-464f-928b-971b77fbced2?api-version=2021-11-01-preview + uri: https://clitest000007.dev.azuresynapse.net/operationResults/87f794e5-dfc9-430f-924b-e756672e99b0?api-version=2021-11-01-preview response: body: string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlscripts/scriptname2000006\",\n @@ -2009,14 +2005,14 @@ interactions: > ago(1h) | take 10\",\n \"metadata\": {\n \"language\": \"kql\"\n \ },\n \"currentConnection\": {\n \"poolName\": \"testkstpool000003\",\n \ \"databaseName\": \"testdtabase000004\"\n }\n }\n },\n \"etag\": - \"43005d7d-0000-0100-0000-628f62830000\"\n}" + \"2a00b2a9-0000-0100-0000-62bc13c60000\"\n}" headers: content-length: - '598' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:41 GMT + - Wed, 29 Jun 2022 08:56:47 GMT server: - Kestrel Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -2034,7 +2030,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://clitest000007.dev.azuresynapse.net/kqlScripts/scriptname000005?api-version=2021-11-01-preview response: @@ -2043,14 +2039,14 @@ interactions: \ \"name\": \"scriptname000005\",\n \"type\": \"Microsoft.Synapse/workspaces/kqlscripts\",\n \ \"properties\": {\n \"content\": {\n \"query\": \"Logs | where TimeStamp > ago(1h) | take 10\",\n \"metadata\": {\n \"language\": \"kql\"\n - \ },\n \"currentConnection\": {}\n }\n },\n \"etag\": \"4300237d-0000-0100-0000-628f62770000\"\n}" + \ },\n \"currentConnection\": {}\n }\n },\n \"etag\": \"2a007fa9-0000-0100-0000-62bc13ba0000\"\n}" headers: content-length: - '504' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:42 GMT + - Wed, 29 Jun 2022 08:56:49 GMT server: - Kestrel Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -2068,13 +2064,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://clitest000007.dev.azuresynapse.net/kqlScripts?api-version=2021-11-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlscripts/scriptname000005","name":"scriptname000005","type":"Microsoft.Synapse/workspaces/kqlscripts","etag":"4300237d-0000-0100-0000-628f62770000","properties":{"content":{"query":"Logs - | where TimeStamp > ago(1h) | take 10","metadata":{"language":"kql"},"currentConnection":{}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlscripts/scriptname2000006","name":"scriptname2000006","type":"Microsoft.Synapse/workspaces/kqlscripts","etag":"43005d7d-0000-0100-0000-628f62830000","properties":{"content":{"query":"Logs + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlscripts/scriptname000005","name":"scriptname000005","type":"Microsoft.Synapse/workspaces/kqlscripts","etag":"2a007fa9-0000-0100-0000-62bc13ba0000","properties":{"content":{"query":"Logs + | where TimeStamp > ago(1h) | take 10","metadata":{"language":"kql"},"currentConnection":{}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlscripts/scriptname2000006","name":"scriptname2000006","type":"Microsoft.Synapse/workspaces/kqlscripts","etag":"2a00b2a9-0000-0100-0000-62bc13c60000","properties":{"content":{"query":"Logs | where TimeStamp > ago(1h) | take 10","metadata":{"language":"kql"},"currentConnection":{"poolName":"testkstpool000003","databaseName":"testdtabase000004"}}}}]}' headers: content-length: @@ -2082,7 +2078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:44 GMT + - Wed, 29 Jun 2022 08:56:51 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -2100,7 +2096,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://clitest000007.dev.azuresynapse.net/kqlScripts/scriptname000005?api-version=2021-11-01-preview response: @@ -2109,14 +2105,14 @@ interactions: \ \"name\": \"scriptname000005\",\n \"type\": \"Microsoft.Synapse/workspaces/kqlscripts\",\n \ \"properties\": {\n \"content\": {\n \"query\": \"Logs | where TimeStamp > ago(1h) | take 10\",\n \"metadata\": {\n \"language\": \"kql\"\n - \ },\n \"currentConnection\": {}\n }\n },\n \"etag\": \"4300237d-0000-0100-0000-628f62770000\"\n}" + \ },\n \"currentConnection\": {}\n }\n },\n \"etag\": \"2a007fa9-0000-0100-0000-62bc13ba0000\"\n}" headers: content-length: - '504' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:45 GMT + - Wed, 29 Jun 2022 08:56:51 GMT server: - Kestrel Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -2136,12 +2132,12 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://clitest000007.dev.azuresynapse.net/kqlScripts/scriptname000005?api-version=2021-11-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlScripts/scriptname000005","recordId":0,"state":"Deleting","created":"0001-01-01T00:00:00","changed":"0001-01-01T00:00:00","type":"KqlScript","name":"scriptname000005","operationId":"48910021-ac14-4732-b0eb-9c198dc6c447"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kqlScripts/scriptname000005","recordId":0,"state":"Deleting","created":"0001-01-01T00:00:00","changed":"0001-01-01T00:00:00","type":"KqlScript","name":"scriptname000005","operationId":"a07f0536-113e-4163-b61f-594db41c4e0b"}' headers: access-control-allow-headers: - Location @@ -2152,9 +2148,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:47 GMT + - Wed, 29 Jun 2022 08:56:52 GMT location: - - https://clitest000007.dev.azuresynapse.net/operationResults/48910021-ac14-4732-b0eb-9c198dc6c447?api-version=2021-11-01-preview + - https://clitest000007.dev.azuresynapse.net/operationResults/a07f0536-113e-4163-b61f-594db41c4e0b?api-version=2021-11-01-preview server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -2172,9 +2168,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://clitest000007.dev.azuresynapse.net/operationResults/48910021-ac14-4732-b0eb-9c198dc6c447?api-version=2021-11-01-preview + uri: https://clitest000007.dev.azuresynapse.net/operationResults/a07f0536-113e-4163-b61f-594db41c4e0b?api-version=2021-11-01-preview response: body: string: '' @@ -2182,7 +2178,7 @@ interactions: content-length: - '0' date: - - Thu, 26 May 2022 11:21:18 GMT + - Wed, 29 Jun 2022 08:57:22 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -2200,13 +2196,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-artifacts/0.12.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://clitest000007.dev.azuresynapse.net/kqlScripts/scriptname000005?api-version=2021-11-01-preview response: body: string: '{"code":"KqlScriptNotFound","message":"The KqlScript scriptname000005 - was not found in (subscription=0b1f6471-1bf0-4dda-aec3-cb9272f09590 resourceGroup=synapse-cli000001 + was not found in (subscription=051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3 resourceGroup=synapse-cli000001 workspace=clitest000007)"}' headers: content-length: @@ -2214,7 +2210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:39 GMT + - Wed, 29 Jun 2022 08:57:44 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_link_connection.yaml b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_link_connection.yaml new file mode 100644 index 00000000000..ef3485e8bbf --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_link_connection.yaml @@ -0,0 +1,405 @@ +interactions: +- request: + body: '{"properties": {"sourceDatabase": {"linkedService": {"type": "LinkedServiceReference", + "referenceName": "AzureSqlDatabase1"}, "typeProperties": {"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CDC_DEVINT_BRS/providers/Microsoft.Sql/servers/adfcdctestbrs-1", + "principalId": "fdf7f09c-68ef-4e13-98df-f0e92f8d976e"}}, "targetDatabase": {"linkedService": + {"type": "LinkedServiceReference", "referenceName": "xiaoyuxingtestne-WorkspaceDefaultSqlServer", + "parameters": {"DBName": "v2"}}}, "compute": {"coreCount": 16, "computeType": + "General"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '573' + Content-Type: + - application/json + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest?api-version=2021-12-01-preview + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaoyuxing/providers/Microsoft.Synapse/workspaces/xiaoyuxingtestne/linkconnections/linkconnectionfortest\",\n + \ \"name\": \"linkconnectionfortest\",\n \"type\": \"Microsoft.Synapse/workspaces/linkconnections\",\n + \ \"properties\": {\n \"sourceDatabase\": {\n \"linkedService\": {\n + \ \"type\": \"LinkedServiceReference\",\n \"referenceName\": + \"AzureSqlDatabase1\"\n },\n \"typeProperties\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CDC_DEVINT_BRS/providers/Microsoft.Sql/servers/adfcdctestbrs-1\",\n + \ \"principalId\": \"fdf7f09c-68ef-4e13-98df-f0e92f8d976e\"\n }\n + \ },\n \"targetDatabase\": {\n \"linkedService\": {\n \"type\": + \"LinkedServiceReference\",\n \"referenceName\": \"xiaoyuxingtestne-WorkspaceDefaultSqlServer\",\n + \ \"parameters\": {\n \"DBName\": \"v2\"\n }\n }\n + \ },\n \"compute\": {\n \"coreCount\": 16,\n \"computeType\": + \"General\"\n },\n \"id\": \"847200c2-3b12-4c58-bee5-2e6b8a1aa943\",\n + \ \"linkTables\": [\n {\n \"id\": \"887e9d4df0fa4afaaad0d7a2c7f42d88\",\n + \ \"source\": {\n \"tableName\": \"weather_history_300000_rows\",\n + \ \"schemaName\": \"dbo\"\n },\n \"target\": {\n \"tableName\": + \"weather_history_300000_rows\",\n \"schemaName\": \"dbo\",\n \"distributionOptions\": + {\n \"type\": \"Round_RoBin\"\n }\n }\n }\n + \ ]\n },\n \"etag\": \"5500b314-0000-0c00-0000-62a98b090000\"\n}" + headers: + content-length: + - '1521' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 07:32:25 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest?api-version=2021-12-01-preview + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaoyuxing/providers/Microsoft.Synapse/workspaces/xiaoyuxingtestne/linkconnections/linkconnectionfortest\",\n + \ \"name\": \"linkconnectionfortest\",\n \"type\": \"Microsoft.Synapse/workspaces/linkconnections\",\n + \ \"properties\": {\n \"sourceDatabase\": {\n \"linkedService\": {\n + \ \"type\": \"LinkedServiceReference\",\n \"referenceName\": + \"AzureSqlDatabase1\"\n },\n \"typeProperties\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CDC_DEVINT_BRS/providers/Microsoft.Sql/servers/adfcdctestbrs-1\",\n + \ \"principalId\": \"fdf7f09c-68ef-4e13-98df-f0e92f8d976e\"\n }\n + \ },\n \"targetDatabase\": {\n \"linkedService\": {\n \"type\": + \"LinkedServiceReference\",\n \"referenceName\": \"xiaoyuxingtestne-WorkspaceDefaultSqlServer\",\n + \ \"parameters\": {\n \"DBName\": \"v2\"\n }\n }\n + \ },\n \"compute\": {\n \"coreCount\": 16,\n \"computeType\": + \"General\"\n },\n \"id\": \"847200c2-3b12-4c58-bee5-2e6b8a1aa943\"\n + \ },\n \"etag\": \"5500b314-0000-0c00-0000-62a98b090000\"\n}" + headers: + content-length: + - '1117' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 07:42:27 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections?api-version=2021-12-01-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaoyuxing/providers/Microsoft.Synapse/workspaces/xiaoyuxingtestne/linkconnections/linkconnectionlongrun","name":"linkconnectionlongrun","type":"Microsoft.Synapse/workspaces/linkconnections","etag":"5f019574-0000-0c00-0000-628f360e0000","properties":{"sourceDatabase":{"typeProperties":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CDC_DEVINT_BRS/providers/Microsoft.Sql/servers/adfcdctestbrs-1","principalId":"fdf7f09c-68ef-4e13-98df-f0e92f8d976e"},"linkedService":{"referenceName":"brs1","type":"LinkedServiceReference"}},"targetDatabase":{"typeProperties":{"crossTableTransaction":false,"dropExistingTargetTableOnStart":true},"linkedService":{"referenceName":"xiaoyuxingtestne-WorkspaceDefaultSqlServer","type":"LinkedServiceReference","parameters":{"DBName":"v2"}}},"compute":{"coreCount":8,"computeType":"General"},"id":"a8b9b154-713f-4a0a-82df-ba586d543441"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaoyuxing/providers/Microsoft.Synapse/workspaces/xiaoyuxingtestne/linkconnections/linkconnection1","name":"linkconnection1","type":"Microsoft.Synapse/workspaces/linkconnections","etag":"68017f73-0000-0c00-0000-629048720000","properties":{"sourceDatabase":{"typeProperties":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CDC_DEVINT_BRS/providers/Microsoft.Sql/servers/adfcdctestbrs-1","principalId":"fdf7f09c-68ef-4e13-98df-f0e92f8d976e"},"linkedService":{"referenceName":"AzureSqlDatabase3","type":"LinkedServiceReference"}},"targetDatabase":{"typeProperties":{"crossTableTransaction":false,"dropExistingTargetTableOnStart":true},"linkedService":{"referenceName":"xiaoyuxingtestne-WorkspaceDefaultSqlServer","type":"LinkedServiceReference","parameters":{"DBName":"v2"}}},"compute":{"coreCount":8,"computeType":"General"},"id":"f79f7cbf-165d-41c1-ac8b-c1d65e12fba3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaoyuxing/providers/Microsoft.Synapse/workspaces/xiaoyuxingtestne/linkconnections/linkconnection2","name":"linkconnection2","type":"Microsoft.Synapse/workspaces/linkconnections","etag":"e301c8ac-0000-0c00-0000-629f09170000","properties":{"sourceDatabase":{"typeProperties":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CDC_DEVINT_BRS/providers/Microsoft.Sql/servers/adfcdctestbrs-1","principalId":"fdf7f09c-68ef-4e13-98df-f0e92f8d976e"},"linkedService":{"referenceName":"AzureSqlDatabase4","type":"LinkedServiceReference"}},"targetDatabase":{"typeProperties":{"crossTableTransaction":false,"dropExistingTargetTableOnStart":true},"linkedService":{"referenceName":"xiaoyuxingtestne-WorkspaceDefaultSqlServer","type":"LinkedServiceReference","parameters":{"DBName":"v2"}}},"compute":{"coreCount":8,"computeType":"General"},"id":"6085cf0a-cfe4-456a-bee0-5ac401d20734"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaoyuxing/providers/Microsoft.Synapse/workspaces/xiaoyuxingtestne/linkconnections/linkconnection3","name":"linkconnection3","type":"Microsoft.Synapse/workspaces/linkconnections","etag":"2d00cb8e-0000-0c00-0000-62a6ce260000","properties":{"sourceDatabase":{"typeProperties":{},"linkedService":{"referenceName":"SqlServer2","type":"LinkedServiceReference"}},"targetDatabase":{"typeProperties":{"crossTableTransaction":false},"linkedService":{"referenceName":"xiaoyuxingtestne-WorkspaceDefaultSqlServer","type":"LinkedServiceReference","parameters":{"DBName":"v2"}}},"compute":{"coreCount":8,"computeType":"General"},"id":"3a274cd2-5e06-41a5-a752-dd03b8520a45","landingZone":{"fileSystem":"test","folderPath":"","linkedService":{"referenceName":"xiaoyuxingtestne-WorkspaceDefaultStorage","type":"LinkedServiceReference"},"sasToken":{"type":"SecureString","value":"**********"}}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaoyuxing/providers/Microsoft.Synapse/workspaces/xiaoyuxingtestne/linkconnections/linkconnectionfortest","name":"linkconnectionfortest","type":"Microsoft.Synapse/workspaces/linkconnections","etag":"5500b314-0000-0c00-0000-62a98b090000","properties":{"sourceDatabase":{"linkedService":{"type":"LinkedServiceReference","referenceName":"AzureSqlDatabase1"},"typeProperties":{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CDC_DEVINT_BRS/providers/Microsoft.Sql/servers/adfcdctestbrs-1","principalId":"fdf7f09c-68ef-4e13-98df-f0e92f8d976e"}},"targetDatabase":{"linkedService":{"type":"LinkedServiceReference","referenceName":"xiaoyuxingtestne-WorkspaceDefaultSqlServer","parameters":{"DBName":"v2"}}},"compute":{"coreCount":16,"computeType":"General"},"id":"847200c2-3b12-4c58-bee5-2e6b8a1aa943"}}]}' + headers: + content-length: + - '4796' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 07:42:29 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: '{"linkTables": [{"id": "887e9d4df0fa4afaaad0d7a2c7f42d88", "source": {"tableName": + "weather_history_300000_rows", "schemaName": "dbo"}, "target": {"tableName": + "weather_history_300000_rows", "schemaName": "dbo", "distributionOptions": {"type": + "Round_RoBin"}}, "operationType": "add"}]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '286' + Content-Type: + - application/json + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest/edittables?api-version=2021-12-01-preview + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaoyuxing/providers/Microsoft.DataFactory/factories/xiaoyuxingtestne/linkconnections/linkconnectionfortest\",\n + \ \"name\": \"linkconnectionfortest\",\n \"type\": \"Microsoft.DataFactory/factories/linkconnections\",\n + \ \"properties\": {\n \"sourceDatabase\": {\n \"linkedService\": {\n + \ \"type\": \"LinkedServiceReference\",\n \"referenceName\": + \"AzureSqlDatabase1\"\n },\n \"typeProperties\": {\n \"resourceId\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CDC_DEVINT_BRS/providers/Microsoft.Sql/servers/adfcdctestbrs-1\",\n + \ \"principalId\": \"fdf7f09c-68ef-4e13-98df-f0e92f8d976e\"\n }\n + \ },\n \"targetDatabase\": {\n \"linkedService\": {\n \"type\": + \"LinkedServiceReference\",\n \"referenceName\": \"xiaoyuxingtestne-WorkspaceDefaultSqlServer\",\n + \ \"parameters\": {\n \"DBName\": \"v2\"\n }\n }\n + \ },\n \"compute\": {\n \"coreCount\": 16,\n \"computeType\": + \"General\"\n },\n \"id\": \"847200c2-3b12-4c58-bee5-2e6b8a1aa943\",\n + \ \"linkTables\": [\n {\n \"id\": \"887e9d4df0fa4afaaad0d7a2c7f42d88\",\n + \ \"source\": {\n \"tableName\": \"weather_history_300000_rows\",\n + \ \"schemaName\": \"dbo\"\n },\n \"target\": {\n \"tableName\": + \"weather_history_300000_rows\",\n \"schemaName\": \"dbo\",\n \"distributionOptions\": + {\n \"type\": \"Round_RoBin\"\n }\n }\n }\n + \ ]\n },\n \"etag\": \"55004b55-0000-0c00-0000-62a98d670000\"\n}" + headers: + content-length: + - '1527' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 07:42:30 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest/start?api-version=2021-12-01-preview + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Wed, 15 Jun 2022 07:52:34 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest/detailedstatus?api-version=2021-12-01-preview + response: + body: + string: "{\n \"name\": \"linkconnectionfortest\",\n \"id\": \"847200c2-3b12-4c58-bee5-2e6b8a1aa943\",\n + \ \"startTime\": \"2022-06-15T07:52:32.883249Z\",\n \"status\": \"Starting\",\n + \ \"continuousRunId\": \"5cc69c6a-a9a7-4dff-b86f-1eadf1bb60d6\",\n \"isPartiallyFailed\": + false,\n \"etag\": \"5500d494-0000-0c00-0000-62a98fc20000\"\n}" + headers: + content-length: + - '296' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 07:52:37 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest/stop?api-version=2021-12-01-preview + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Wed, 15 Jun 2022 07:52:40 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest/detailedstatus?api-version=2021-12-01-preview + response: + body: + string: "{\n \"name\": \"linkconnectionfortest\",\n \"id\": \"847200c2-3b12-4c58-bee5-2e6b8a1aa943\",\n + \ \"startTime\": \"2022-06-15T07:52:32.883249Z\",\n \"stopTime\": \"2022-06-15T07:52:40.0214963Z\",\n + \ \"status\": \"Stopping\",\n \"isPartiallyFailed\": false,\n \"etag\": + \"55006a95-0000-0c00-0000-62a98fc80000\"\n}" + headers: + content-length: + - '281' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 07:52:41 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest/linktables?api-version=2021-12-01-preview + response: + body: + string: "{\n \"value\": [\n {\n \"id\": \"887e9d4df0fa4afaaad0d7a2c7f42d88\",\n + \ \"source\": {\n \"tableName\": \"weather_history_300000_rows\",\n + \ \"schemaName\": \"dbo\"\n },\n \"target\": {\n \"tableName\": + \"weather_history_300000_rows\",\n \"schemaName\": \"dbo\",\n \"distributionOptions\": + {\n \"type\": \"Round_RoBin\"\n }\n }\n }\n ]\n}" + headers: + content-length: + - '369' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 07:52:43 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: DELETE + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest?api-version=2021-12-01-preview + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Wed, 15 Jun 2022 07:57:45 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.13.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://xiaoyuxingtestne.dev.azuresynapse.net/linkconnections/linkconnectionfortest?api-version=2021-12-01-preview + response: + body: + string: '{"code":"NotFound","message":"The document could not be retrieved because + it does not exist.","target":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/xiaoyuxing/providers/Microsoft.DataFactory/factories/xiaoyuxingtestne/linkconnections/linkconnectionfortest","details":null,"error":null}' + headers: + content-type: + - application/json; charset=UTF-8 + date: + - Wed, 15 Jun 2022 07:57:46 GMT + server: + - Kestrel Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + status: + code: 404 + message: Not Found +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_managed_private_endpoints.yaml b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_managed_private_endpoints.yaml index 05eaeded028..2c95006b511 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_managed_private_endpoints.yaml +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_managed_private_endpoints.yaml @@ -22,15 +22,15 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","managedVirtualNetwork":"default","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000003","dev":"https://clitest000003.dev.azuresynapse.net","sqlOnDemand":"clitest000003-ondemand.sql.azuresynapse.net","sql":"clitest000003.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-e7f48d67-efe7-4dc2-8af4-e12be504baf7","privateEndpointConnections":[],"workspaceUID":"6da3d573-abae-4656-ba42-edc38750612b","extraProperties":{"WorkspaceType":"Normal"},"managedVirtualNetworkSettings":{"preventDataExfiltration":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003","location":"eastus","name":"clitest000003","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"23c0f412-f4f3-47e8-a6c2-ea6c2451dc3a"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","managedVirtualNetwork":"default","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000003","dev":"https://clitest000003.dev.azuresynapse.net","sqlOnDemand":"clitest000003-ondemand.sql.azuresynapse.net","sql":"clitest000003.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-262bb85d-cfda-42d4-8276-24f85da3651c","privateEndpointConnections":[],"workspaceUID":"1c15c12f-bb42-400c-b1fe-fce1ab47f801","extraProperties":{"WorkspaceType":"Normal"},"managedVirtualNetworkSettings":{"preventDataExfiltration":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003","location":"eastus","name":"clitest000003","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"a87dc201-f3fc-4972-97e8-49b93176764d"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -38,7 +38,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:47:47 GMT + - Thu, 30 Jun 2022 06:47:09 GMT expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -69,9 +69,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:48:18 GMT + - Thu, 30 Jun 2022 06:47:40 GMT expires: - '-1' pragma: @@ -116,9 +116,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -130,7 +130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:48:49 GMT + - Thu, 30 Jun 2022 06:48:11 GMT expires: - '-1' pragma: @@ -163,9 +163,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -177,7 +177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:49:19 GMT + - Thu, 30 Jun 2022 06:48:41 GMT expires: - '-1' pragma: @@ -210,9 +210,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -224,7 +224,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:49:49 GMT + - Thu, 30 Jun 2022 06:49:12 GMT expires: - '-1' pragma: @@ -257,9 +257,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -271,7 +271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:50:21 GMT + - Thu, 30 Jun 2022 06:49:42 GMT expires: - '-1' pragma: @@ -304,9 +304,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -318,7 +318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:50:51 GMT + - Thu, 30 Jun 2022 06:50:13 GMT expires: - '-1' pragma: @@ -351,9 +351,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -365,7 +365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:51:21 GMT + - Thu, 30 Jun 2022 06:50:44 GMT expires: - '-1' pragma: @@ -398,9 +398,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -412,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:51:52 GMT + - Thu, 30 Jun 2022 06:51:14 GMT expires: - '-1' pragma: @@ -445,9 +445,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -459,7 +459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:52:22 GMT + - Thu, 30 Jun 2022 06:51:45 GMT expires: - '-1' pragma: @@ -492,9 +492,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -506,7 +506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:52:52 GMT + - Thu, 30 Jun 2022 06:52:15 GMT expires: - '-1' pragma: @@ -539,9 +539,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:53:23 GMT + - Thu, 30 Jun 2022 06:52:46 GMT expires: - '-1' pragma: @@ -586,9 +586,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -600,7 +600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:53:54 GMT + - Thu, 30 Jun 2022 06:53:17 GMT expires: - '-1' pragma: @@ -633,9 +633,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -647,7 +647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:54:24 GMT + - Thu, 30 Jun 2022 06:53:49 GMT expires: - '-1' pragma: @@ -680,9 +680,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/af1e1c38-5d4a-483e-b7a3-49665a329419?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/ce032ad9-1019-46f5-aa85-33730aa344c7?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -694,7 +694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:54:56 GMT + - Thu, 30 Jun 2022 06:54:20 GMT expires: - '-1' pragma: @@ -727,12 +727,12 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location --enable-managed-virtual-network User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","managedVirtualNetwork":"default","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000003","dev":"https://clitest000003.dev.azuresynapse.net","sqlOnDemand":"clitest000003-ondemand.sql.azuresynapse.net","sql":"clitest000003.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-e7f48d67-efe7-4dc2-8af4-e12be504baf7","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"6da3d573-abae-4656-ba42-edc38750612b","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"managedVirtualNetworkSettings":{"preventDataExfiltration":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003","location":"eastus","name":"clitest000003","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"23c0f412-f4f3-47e8-a6c2-ea6c2451dc3a"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","managedVirtualNetwork":"default","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000003","dev":"https://clitest000003.dev.azuresynapse.net","sqlOnDemand":"clitest000003-ondemand.sql.azuresynapse.net","sql":"clitest000003.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-262bb85d-cfda-42d4-8276-24f85da3651c","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"1c15c12f-bb42-400c-b1fe-fce1ab47f801","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"managedVirtualNetworkSettings":{"preventDataExfiltration":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003","location":"eastus","name":"clitest000003","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"a87dc201-f3fc-4972-97e8-49b93176764d"}}' headers: cache-control: - no-cache @@ -741,7 +741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:54:56 GMT + - Thu, 30 Jun 2022 06:54:20 GMT expires: - '-1' pragma: @@ -777,7 +777,7 @@ interactions: ParameterSetName: - --resource-group --name --workspace-name --start-ip-address --end-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/firewallRules/allowAll?api-version=2021-06-01 response: @@ -789,7 +789,7 @@ interactions: access-control-expose-headers: - Location azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/021e78bb-4f39-426a-a521-996de8c21c57?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/32e55f2f-36e9-42e9-a181-87e1870b6dec?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -797,11 +797,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:54:58 GMT + - Thu, 30 Jun 2022 06:54:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationResults/021e78bb-4f39-426a-a521-996de8c21c57?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationResults/32e55f2f-36e9-42e9-a181-87e1870b6dec?api-version=2021-06-01 pragma: - no-cache server: @@ -811,7 +811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -829,9 +829,9 @@ interactions: ParameterSetName: - --resource-group --name --workspace-name --start-ip-address --end-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/021e78bb-4f39-426a-a521-996de8c21c57?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationStatuses/32e55f2f-36e9-42e9-a181-87e1870b6dec?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -843,7 +843,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:55:28 GMT + - Thu, 30 Jun 2022 06:54:55 GMT expires: - '-1' pragma: @@ -875,9 +875,9 @@ interactions: ParameterSetName: - --resource-group --name --workspace-name --start-ip-address --end-ip-address User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationResults/021e78bb-4f39-426a-a521-996de8c21c57?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/operationResults/32e55f2f-36e9-42e9-a181-87e1870b6dec?api-version=2021-06-01 response: body: string: '{"properties":{"provisioningState":"Succeeded","startIpAddress":"0.0.0.0","endIpAddress":"255.255.255.255"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/firewallRules/allowAll","name":"allowAll","type":"Microsoft.Synapse/workspaces/firewallRules"}' @@ -889,7 +889,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:55:29 GMT + - Thu, 30 Jun 2022 06:54:56 GMT expires: - '-1' pragma: @@ -909,7 +909,7 @@ interactions: message: OK - request: body: '{"properties": {"privateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/test", - "groupId": "dfs"}}' + "groupId": "blob"}}' headers: Accept: - application/json @@ -918,27 +918,27 @@ interactions: Connection: - keep-alive Content-Length: - - '183' + - '184' Content-Type: - application/json User-Agent: - - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://clitest000003.dev.azuresynapse.net/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE?api-version=2019-06-01-preview response: body: - string: '{"name":"AzureDataLakeStoragePE","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE","type":"Microsoft.Synapse/workspaces/managedVirtualNetworks/managedPrivateEndpoints","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/test","groupId":"dfs","provisioningState":"Provisioning","connectionState":{},"isReserved":false,"fqdns":[],"isCompliant":false}}' + string: '{"name":"AzureDataLakeStoragePE","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE","type":"Microsoft.Synapse/workspaces/managedVirtualNetworks/managedPrivateEndpoints","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/test","groupId":"blob","provisioningState":"Provisioning","connectionState":{},"isReserved":false,"fqdns":[],"isCompliant":false}}' headers: access-control-allow-headers: - Location access-control-expose-headers: - Location content-length: - - '625' + - '626' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:56:33 GMT + - Thu, 30 Jun 2022 06:55:58 GMT location: - https://clitest000003.dev.azuresynapse.net/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE?api-version=2019-06-01-preview server: @@ -958,19 +958,19 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://clitest000003.dev.azuresynapse.net/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE?api-version=2019-06-01-preview response: body: - string: '{"name":"AzureDataLakeStoragePE","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE","type":"Microsoft.Synapse/workspaces/managedVirtualNetworks/managedPrivateEndpoints","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/test","groupId":"dfs","provisioningState":"Failed","connectionState":{},"isReserved":false,"fqdns":[],"isCompliant":false}}' + string: '{"name":"AzureDataLakeStoragePE","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE","type":"Microsoft.Synapse/workspaces/managedVirtualNetworks/managedPrivateEndpoints","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/test","groupId":"blob","provisioningState":"Failed","connectionState":{},"isReserved":false,"fqdns":[],"isCompliant":false}}' headers: content-length: - - '619' + - '620' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:58:05 GMT + - Thu, 30 Jun 2022 06:57:30 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -988,21 +988,21 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://clitest000003.dev.azuresynapse.net/managedVirtualNetworks/default/managedPrivateEndpoints?api-version=2019-06-01-preview response: body: string: '{"value":[{"name":"synapse-ws-sql--clitest000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/managedVirtualNetworks/default/managedPrivateEndpoints/synapse-ws-sql--clitest000003","type":"Microsoft.Synapse/workspaces/managedVirtualNetworks/managedPrivateEndpoints","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003","groupId":"sql","provisioningState":"Succeeded","connectionState":{"status":"Approved","description":"Approved - by Microsoft.Synapse Resource Provider","actionsRequired":""},"isReserved":true,"fqdns":["clitest000003.6da3d573-abae-4656-ba42-edc38750612b.sql.azuresynapse.net"],"isCompliant":false}},{"name":"AzureDataLakeStoragePE","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE","type":"Microsoft.Synapse/workspaces/managedVirtualNetworks/managedPrivateEndpoints","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/test","groupId":"dfs","provisioningState":"Failed","connectionState":{},"isReserved":false,"fqdns":[],"isCompliant":false}},{"name":"synapse-ws-sqlOnDemand--clitest000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/managedVirtualNetworks/default/managedPrivateEndpoints/synapse-ws-sqlOnDemand--clitest000003","type":"Microsoft.Synapse/workspaces/managedVirtualNetworks/managedPrivateEndpoints","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003","groupId":"sqlOnDemand","provisioningState":"Succeeded","connectionState":{"status":"Approved","description":"Approved - by Microsoft.Synapse Resource Provider","actionsRequired":""},"isReserved":true,"fqdns":["clitest000003-ondemand.6da3d573-abae-4656-ba42-edc38750612b.sql.azuresynapse.net"],"isCompliant":false}}]}' + by Microsoft.Synapse Resource Provider","actionsRequired":""},"isReserved":true,"fqdns":["clitest000003.1c15c12f-bb42-400c-b1fe-fce1ab47f801.sql.azuresynapse.net"],"isCompliant":false}},{"name":"AzureDataLakeStoragePE","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE","type":"Microsoft.Synapse/workspaces/managedVirtualNetworks/managedPrivateEndpoints","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Storage/storageAccounts/test","groupId":"blob","provisioningState":"Failed","connectionState":{},"isReserved":false,"fqdns":[],"isCompliant":false}},{"name":"synapse-ws-sqlOnDemand--clitest000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003/managedVirtualNetworks/default/managedPrivateEndpoints/synapse-ws-sqlOnDemand--clitest000003","type":"Microsoft.Synapse/workspaces/managedVirtualNetworks/managedPrivateEndpoints","properties":{"privateLinkResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000003","groupId":"sqlOnDemand","provisioningState":"Succeeded","connectionState":{"status":"Approved","description":"Approved + by Microsoft.Synapse Resource Provider","actionsRequired":""},"isReserved":true,"fqdns":["clitest000003-ondemand.1c15c12f-bb42-400c-b1fe-fce1ab47f801.sql.azuresynapse.net"],"isCompliant":false}}]}' headers: content-length: - - '2324' + - '2325' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:58:06 GMT + - Thu, 30 Jun 2022 06:57:31 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1022,7 +1022,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://clitest000003.dev.azuresynapse.net/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE?api-version=2019-06-01-preview response: @@ -1032,7 +1032,7 @@ interactions: content-length: - '0' date: - - Thu, 26 May 2022 10:58:09 GMT + - Thu, 30 Jun 2022 06:57:32 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1050,16 +1050,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - azsdk-python-synapse-managedprivateendpoints/0.3.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://clitest000003.dev.azuresynapse.net/managedVirtualNetworks/default/managedPrivateEndpoints/AzureDataLakeStoragePE?api-version=2019-06-01-preview response: body: string: '{"error":{"code":"UnknownError","message":"{\"CorrelationId\":\"\",\"StatusCode\":404,\"Message\":\"Resource - not found: Message=PrivateEndpoint has been deleted: ClientId=a86f18d8-cb6d-4ca1-9e3e-3cd3e8e5ea89, - ReferenceName=AzureDataLakeStoragePE, Cluster: a86f18d8-cb6d-4ca1-9e3e-3cd3e8e5ea89.\",\"ExceptionDetail\":\"Microsoft.Analytics.Clusters.Common.NetworkServiceException: - PrivateEndpoint has been deleted: ClientId=a86f18d8-cb6d-4ca1-9e3e-3cd3e8e5ea89, - ReferenceName=AzureDataLakeStoragePE, Cluster: a86f18d8-cb6d-4ca1-9e3e-3cd3e8e5ea89.\\r\\n at + not found: Message=PrivateEndpoint has been deleted: ClientId=ccfe20d0-0aab-4601-b7f4-82f10f5a5cfa, + ReferenceName=AzureDataLakeStoragePE, Cluster: ccfe20d0-0aab-4601-b7f4-82f10f5a5cfa.\",\"ExceptionDetail\":\"Microsoft.Analytics.Clusters.Common.NetworkServiceException: + PrivateEndpoint has been deleted: ClientId=ccfe20d0-0aab-4601-b7f4-82f10f5a5cfa, + ReferenceName=AzureDataLakeStoragePE, Cluster: ccfe20d0-0aab-4601-b7f4-82f10f5a5cfa.\\r\\n at Microsoft.Analytics.Clusters.Services.NetworkService.NetworkServiceImpl.GetPrivateEndpointAsync(String clientId, String referenceName, AbstractMetadataContext dbContext) in C:\\\\source\\\\Services\\\\NetworkService\\\\Service\\\\NetworkServiceImpl.cs:line 3469\\r\\n at Microsoft.Analytics.Clusters.Services.NetworkService.StatefulBE.Controllers.NetworkController.GetPrivateEndpointAsync(String @@ -1089,14 +1089,14 @@ interactions: httpContext) in C:\\\\source\\\\Shared\\\\Web\\\\ServiceFabricResourceNotFoundMiddleware.cs:line 50\\r\\n at Microsoft.Analytics.Clusters.Common.Web.ExceptionMiddleware.InvokeAsync(HttpContext httpContext) in C:\\\\source\\\\Shared\\\\Web\\\\ExceptionMiddleware.cs:line - 54\",\"ErrorType\":\"PrivateEndpointNotFound\",\"ErrorNumber\":2145,\"ErrorOn\":\"2022-05-26T10:59:11.5813016+00:00\"}"}}' + 54\",\"ErrorType\":\"PrivateEndpointNotFound\",\"ErrorNumber\":2145,\"ErrorOn\":\"2022-06-30T06:58:34.8133665+00:00\"}"}}' headers: content-length: - '4119' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 10:59:11 GMT + - Thu, 30 Jun 2022 06:58:34 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_pool_audit_policy_logentry_eventhub.yaml b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_pool_audit_policy_logentry_eventhub.yaml index b5be4945e54..5648bf47722 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_pool_audit_policy_logentry_eventhub.yaml +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_pool_audit_policy_logentry_eventhub.yaml @@ -21,15 +21,15 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000008","dev":"https://clitest000008.dev.azuresynapse.net","sqlOnDemand":"clitest000008-ondemand.sql.azuresynapse.net","sql":"clitest000008.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-00f27499-4195-462a-86f4-ba8e2e218b1f","privateEndpointConnections":[],"workspaceUID":"48ef76e2-b95c-4d8d-9810-c0b5ca8c96a1","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008","location":"eastus","name":"clitest000008","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"2c4d63d4-1976-4020-aadc-7ef55df6645a"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000008","dev":"https://clitest000008.dev.azuresynapse.net","sqlOnDemand":"clitest000008-ondemand.sql.azuresynapse.net","sql":"clitest000008.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-e6291d33-a840-46ed-9fff-1f75cbd3c18f","privateEndpointConnections":[],"workspaceUID":"26d536c1-d1e7-4906-bc8d-92c3a873d594","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008","location":"eastus","name":"clitest000008","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9ad02020-aa94-43bc-a84d-0cbe5201fe48"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/e0ed6819-843d-40d7-a976-232311ee4ca0?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/5903b14e-7b21-4484-95a3-c11b847655bd?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -37,7 +37,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:13:01 GMT + - Wed, 29 Jun 2022 09:02:46 GMT expires: - '-1' pragma: @@ -49,7 +49,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' status: code: 201 message: Created @@ -68,9 +68,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/e0ed6819-843d-40d7-a976-232311ee4ca0?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/5903b14e-7b21-4484-95a3-c11b847655bd?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:13:32 GMT + - Wed, 29 Jun 2022 09:03:17 GMT expires: - '-1' pragma: @@ -91,10 +91,6 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -115,9 +111,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/e0ed6819-843d-40d7-a976-232311ee4ca0?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/5903b14e-7b21-4484-95a3-c11b847655bd?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -129,7 +125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:14:02 GMT + - Wed, 29 Jun 2022 09:03:47 GMT expires: - '-1' pragma: @@ -138,10 +134,6 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -162,9 +154,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/e0ed6819-843d-40d7-a976-232311ee4ca0?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/5903b14e-7b21-4484-95a3-c11b847655bd?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -176,7 +168,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:14:32 GMT + - Wed, 29 Jun 2022 09:04:19 GMT expires: - '-1' pragma: @@ -185,10 +177,6 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -209,9 +197,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/e0ed6819-843d-40d7-a976-232311ee4ca0?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/5903b14e-7b21-4484-95a3-c11b847655bd?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -223,7 +211,135 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:15:03 GMT + - Wed, 29 Jun 2022 09:04:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse workspace create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/5903b14e-7b21-4484-95a3-c11b847655bd?api-version=2021-06-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 29 Jun 2022 09:05:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse workspace create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008?api-version=2021-06-01 + response: + body: + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000008","dev":"https://clitest000008.dev.azuresynapse.net","sqlOnDemand":"clitest000008-ondemand.sql.azuresynapse.net","sql":"clitest000008.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-e6291d33-a840-46ed-9fff-1f75cbd3c18f","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"26d536c1-d1e7-4906-bc8d-92c3a873d594","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008","location":"eastus","name":"clitest000008","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9ad02020-aa94-43bc-a84d-0cbe5201fe48"}}' + headers: + cache-control: + - no-cache + content-length: + - '1448' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 29 Jun 2022 09:05:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse sql pool create + Connection: + - keep-alive + ParameterSetName: + - --name --performance-level --workspace --resource-group --storage-type + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008?api-version=2021-06-01 + response: + body: + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000008","dev":"https://clitest000008.dev.azuresynapse.net","sqlOnDemand":"clitest000008-ondemand.sql.azuresynapse.net","sql":"clitest000008.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-e6291d33-a840-46ed-9fff-1f75cbd3c18f","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"26d536c1-d1e7-4906-bc8d-92c3a873d594","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008","location":"eastus","name":"clitest000008","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"9ad02020-aa94-43bc-a84d-0cbe5201fe48"}}' + headers: + cache-control: + - no-cache + content-length: + - '1448' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 29 Jun 2022 09:05:25 GMT expires: - '-1' pragma: @@ -241,6 +357,65 @@ interactions: status: code: 200 message: OK +- request: + body: '{"location": "eastus", "sku": {"name": "DW400c"}, "properties": {"createMode": + "Default", "storageAccountType": "GRS"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse sql pool create + Connection: + - keep-alive + Content-Length: + - '119' + Content-Type: + - application/json + ParameterSetName: + - --name --performance-level --workspace --resource-group --storage-type + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004?api-version=2021-06-01 + response: + body: + string: '{"properties":{"maxSizeBytes":0,"creationDate":"0001-01-01T00:00:00","storageAccountType":"GRS","provisioningState":"Provisioning"},"sku":{"name":"DW400c","capacity":0},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004","name":"testsqlpool000004","type":"Microsoft.Synapse/workspaces/sqlPools"}' + headers: + access-control-allow-headers: + - Location + - Retry-After + access-control-expose-headers: + - Location + - Retry-After + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 + cache-control: + - no-cache + content-length: + - '415' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 29 Jun 2022 09:05:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationResults/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted - request: body: null headers: @@ -249,16 +424,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse sql pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/e0ed6819-843d-40d7-a976-232311ee4ca0?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -270,7 +444,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:15:33 GMT + - Wed, 29 Jun 2022 09:05:43 GMT expires: - '-1' pragma: @@ -296,28 +470,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse sql pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/e0ed6819-843d-40d7-a976-232311ee4ca0?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '22' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:16:03 GMT + - Wed, 29 Jun 2022 09:06:13 GMT expires: - '-1' pragma: @@ -343,28 +516,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse sql pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000008","dev":"https://clitest000008.dev.azuresynapse.net","sqlOnDemand":"clitest000008-ondemand.sql.azuresynapse.net","sql":"clitest000008.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-00f27499-4195-462a-86f4-ba8e2e218b1f","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"48ef76e2-b95c-4d8d-9810-c0b5ca8c96a1","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008","location":"eastus","name":"clitest000008","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"2c4d63d4-1976-4020-aadc-7ef55df6645a"}}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '1448' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:16:04 GMT + - Wed, 29 Jun 2022 09:06:45 GMT expires: - '-1' pragma: @@ -386,7 +558,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -396,21 +568,21 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000008","dev":"https://clitest000008.dev.azuresynapse.net","sqlOnDemand":"clitest000008-ondemand.sql.azuresynapse.net","sql":"clitest000008.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-00f27499-4195-462a-86f4-ba8e2e218b1f","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"48ef76e2-b95c-4d8d-9810-c0b5ca8c96a1","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008","location":"eastus","name":"clitest000008","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"2c4d63d4-1976-4020-aadc-7ef55df6645a"}}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '1448' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:16:06 GMT + - Wed, 29 Jun 2022 09:07:15 GMT expires: - '-1' pragma: @@ -429,64 +601,51 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "DW400c"}, "properties": {"createMode": - "Default", "storageAccountType": "GRS"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - synapse sql pool create Connection: - keep-alive - Content-Length: - - '119' - Content-Type: - - application/json ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004?api-version=2021-06-01 + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: - string: '{"properties":{"maxSizeBytes":0,"creationDate":"0001-01-01T00:00:00","storageAccountType":"GRS","provisioningState":"Provisioning"},"sku":{"name":"DW400c","capacity":0},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004","name":"testsqlpool000004","type":"Microsoft.Synapse/workspaces/sqlPools"}' + string: '{"status":"InProgress"}' headers: - access-control-allow-headers: - - Location - - Retry-After - access-control-expose-headers: - - Location - - Retry-After - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 cache-control: - no-cache content-length: - - '415' + - '23' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:16:11 GMT + - Wed, 29 Jun 2022 09:07:45 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationResults/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 pragma: - no-cache server: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1194' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -501,9 +660,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -515,7 +674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:16:21 GMT + - Wed, 29 Jun 2022 09:08:16 GMT expires: - '-1' pragma: @@ -547,9 +706,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -561,7 +720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:16:52 GMT + - Wed, 29 Jun 2022 09:08:46 GMT expires: - '-1' pragma: @@ -593,9 +752,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -607,7 +766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:17:22 GMT + - Wed, 29 Jun 2022 09:09:18 GMT expires: - '-1' pragma: @@ -639,9 +798,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -653,7 +812,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:17:52 GMT + - Wed, 29 Jun 2022 09:09:48 GMT expires: - '-1' pragma: @@ -685,9 +844,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -699,7 +858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:18:23 GMT + - Wed, 29 Jun 2022 09:10:18 GMT expires: - '-1' pragma: @@ -731,9 +890,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -745,7 +904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:18:54 GMT + - Wed, 29 Jun 2022 09:10:49 GMT expires: - '-1' pragma: @@ -777,9 +936,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -791,7 +950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:19:24 GMT + - Wed, 29 Jun 2022 09:11:20 GMT expires: - '-1' pragma: @@ -823,9 +982,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -837,7 +996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:19:55 GMT + - Wed, 29 Jun 2022 09:11:50 GMT expires: - '-1' pragma: @@ -869,9 +1028,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -883,7 +1042,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:25 GMT + - Wed, 29 Jun 2022 09:12:22 GMT expires: - '-1' pragma: @@ -915,9 +1074,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -929,7 +1088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:20:56 GMT + - Wed, 29 Jun 2022 09:12:53 GMT expires: - '-1' pragma: @@ -961,9 +1120,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -975,7 +1134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:26 GMT + - Wed, 29 Jun 2022 09:13:23 GMT expires: - '-1' pragma: @@ -1007,21 +1166,21 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationResults/813a1cba-ead9-4dd7-b9f0-2c79d6857f50?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationResults/6729cf33-8d9d-4e8e-b61d-9bdbab4c79b4?api-version=2021-06-01 response: body: - string: '{"properties":{"status":"Online","maxSizeBytes":263882790666240,"collation":"SQL_Latin1_General_CP1_CI_AS","creationDate":"2022-05-26T11:21:09.493Z","storageAccountType":"GRS","provisioningState":"Succeeded"},"sku":{"name":"DW400c","capacity":0},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004","name":"testsqlpool000004","type":"Microsoft.Synapse/workspaces/sqlPools","location":"eastus"}' + string: '{"properties":{"status":"Online","maxSizeBytes":263882790666240,"collation":"SQL_Latin1_General_CP1_CI_AS","creationDate":"2022-06-29T09:13:13.14Z","storageAccountType":"GRS","provisioningState":"Succeeded"},"sku":{"name":"DW400c","capacity":0},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004","name":"testsqlpool000004","type":"Microsoft.Synapse/workspaces/sqlPools","location":"eastus"}' headers: cache-control: - no-cache content-length: - - '512' + - '511' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:27 GMT + - Wed, 29 Jun 2022 09:13:24 GMT expires: - '-1' pragma: @@ -1049,12 +1208,12 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002?api-version=2021-09-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002","name":"adlsgen2000002","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-26T11:12:29.4672537Z","key2":"2022-05-26T11:12:29.4672537Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T11:12:29.4828499Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T11:12:29.4828499Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-26T11:12:29.3110012Z","primaryEndpoints":{"blob":"https://adlsgen2000002.blob.core.windows.net/","queue":"https://adlsgen2000002.queue.core.windows.net/","table":"https://adlsgen2000002.table.core.windows.net/","file":"https://adlsgen2000002.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002","name":"adlsgen2000002","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-29T09:02:11.8058534Z","key2":"2022-06-29T09:02:11.8058534Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-29T09:02:11.8058534Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-29T09:02:11.8058534Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-29T09:02:11.6652108Z","primaryEndpoints":{"blob":"https://adlsgen2000002.blob.core.windows.net/","queue":"https://adlsgen2000002.queue.core.windows.net/","table":"https://adlsgen2000002.table.core.windows.net/","file":"https://adlsgen2000002.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -1063,7 +1222,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 11:21:28 GMT + - Wed, 29 Jun 2022 09:13:25 GMT expires: - '-1' pragma: @@ -1097,12 +1256,12 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002/listKeys?api-version=2021-09-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -1111,7 +1270,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 11:21:31 GMT + - Wed, 29 Jun 2022 09:13:26 GMT expires: - '-1' pragma: @@ -1127,7 +1286,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 200 message: OK @@ -1145,7 +1304,7 @@ interactions: ParameterSetName: - --workspace-name --resource-group --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: @@ -1159,7 +1318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:33 GMT + - Wed, 29 Jun 2022 09:13:28 GMT expires: - '-1' pragma: @@ -1192,7 +1351,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-key --storage-endpoint --retention-days --actions User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: @@ -1206,7 +1365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:35 GMT + - Wed, 29 Jun 2022 09:13:30 GMT expires: - '-1' pragma: @@ -1247,7 +1406,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-key --storage-endpoint --retention-days --actions User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: @@ -1261,7 +1420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:39 GMT + - Wed, 29 Jun 2022 09:13:36 GMT expires: - '-1' pragma: @@ -1273,7 +1432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1291,7 +1450,7 @@ interactions: ParameterSetName: - --workspace-name --resource-group --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: @@ -1305,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:40 GMT + - Wed, 29 Jun 2022 09:13:37 GMT expires: - '-1' pragma: @@ -1338,7 +1497,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: @@ -1352,7 +1511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:42 GMT + - Wed, 29 Jun 2022 09:13:40 GMT expires: - '-1' pragma: @@ -1385,7 +1544,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=name%20eq%20%27adlsgen2000002%27%20and%20%28resourceType%20eq%20%27Microsoft.Storage%2FstorageAccounts%27%20or%20resourceType%20eq%20%27Microsoft.ClassicStorage%2FstorageAccounts%27%29&api-version=2021-04-01 response: @@ -1399,7 +1558,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:43 GMT + - Wed, 29 Jun 2022 09:13:40 GMT expires: - '-1' pragma: @@ -1428,12 +1587,12 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002?api-version=2021-09-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002","name":"adlsgen2000002","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-26T11:12:29.4672537Z","key2":"2022-05-26T11:12:29.4672537Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T11:12:29.4828499Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-26T11:12:29.4828499Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-26T11:12:29.3110012Z","primaryEndpoints":{"blob":"https://adlsgen2000002.blob.core.windows.net/","queue":"https://adlsgen2000002.queue.core.windows.net/","table":"https://adlsgen2000002.table.core.windows.net/","file":"https://adlsgen2000002.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002","name":"adlsgen2000002","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-29T09:02:11.8058534Z","key2":"2022-06-29T09:02:11.8058534Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-29T09:02:11.8058534Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-29T09:02:11.8058534Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-29T09:02:11.6652108Z","primaryEndpoints":{"blob":"https://adlsgen2000002.blob.core.windows.net/","queue":"https://adlsgen2000002.queue.core.windows.net/","table":"https://adlsgen2000002.table.core.windows.net/","file":"https://adlsgen2000002.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -1442,7 +1601,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 11:21:44 GMT + - Wed, 29 Jun 2022 09:13:42 GMT expires: - '-1' pragma: @@ -1475,7 +1634,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=name%20eq%20%27adlsgen2000002%27%20and%20%28resourceType%20eq%20%27Microsoft.Storage%2FstorageAccounts%27%20or%20resourceType%20eq%20%27Microsoft.ClassicStorage%2FstorageAccounts%27%29&api-version=2021-04-01 response: @@ -1489,7 +1648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:46 GMT + - Wed, 29 Jun 2022 09:13:42 GMT expires: - '-1' pragma: @@ -1520,12 +1679,12 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002/listKeys?api-version=2021-09-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -1534,7 +1693,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 11:21:47 GMT + - Wed, 29 Jun 2022 09:13:44 GMT expires: - '-1' pragma: @@ -1558,7 +1717,7 @@ interactions: body: '{"properties": {"state": "Enabled", "storageEndpoint": "https://adlsgen2000002.blob.core.windows.net/", "storageAccountAccessKey": "veryFakedStorageAccountKey==", "retentionDays": 30, "auditActionsAndGroups": ["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"], "storageAccountSubscriptionId": - "0b1f6471-1bf0-4dda-aec3-cb9272f09590", "isStorageSecondaryKeyInUse": false, + "051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3", "isStorageSecondaryKeyInUse": false, "isAzureMonitorTargetEnabled": false}}' headers: Accept: @@ -1577,12 +1736,12 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -1591,7 +1750,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:50 GMT + - Wed, 29 Jun 2022 09:13:49 GMT expires: - '-1' pragma: @@ -1607,7 +1766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 200 message: OK @@ -1625,12 +1784,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -1639,7 +1798,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:53 GMT + - Wed, 29 Jun 2022 09:13:50 GMT expires: - '-1' pragma: @@ -1660,7 +1819,7 @@ interactions: - request: body: '{"properties": {"state": "Disabled", "storageEndpoint": "https://adlsgen2000002.blob.core.windows.net/", "retentionDays": 30, "auditActionsAndGroups": ["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"], - "storageAccountSubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", "isStorageSecondaryKeyInUse": + "storageAccountSubscriptionId": "051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3", "isStorageSecondaryKeyInUse": false, "isAzureMonitorTargetEnabled": false}}' headers: Accept: @@ -1678,12 +1837,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Disabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Disabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -1692,7 +1851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:55 GMT + - Wed, 29 Jun 2022 09:13:52 GMT expires: - '-1' pragma: @@ -1708,7 +1867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -1726,12 +1885,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001","name":"synapse-cli000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-26T11:12:24Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001","name":"synapse-cli000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-06-29T09:01:59Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1740,15 +1899,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:21:56 GMT + - Wed, 29 Jun 2022 09:13:54 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1773,12 +1930,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"ec669529-9445-491f-8367-1d8f221e389b","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-05-26T11:22:02.4637137Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-05-26T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-05-26T11:22:02.4637137Z","modifiedDate":"2022-05-26T11:22:02.4637137Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003","name":"laws000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"c8dfd7c1-fcdb-4ec4-ae88-52f0cf82bf80","provisioningState":"Creating","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-29T09:14:00.6298382Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-29T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-29T09:14:00.6298382Z","modifiedDate":"2022-06-29T09:14:00.6298382Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003","name":"laws000003","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -1791,7 +1948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:22:04 GMT + - Wed, 29 Jun 2022 09:14:01 GMT expires: - '-1' location: @@ -1807,7 +1964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' x-powered-by: - ASP.NET status: @@ -1827,12 +1984,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-loganalytics/13.0.0b4 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003?api-version=2021-12-01-preview response: body: - string: '{"properties":{"customerId":"ec669529-9445-491f-8367-1d8f221e389b","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-05-26T11:22:02.4637137Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-05-26T14:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-05-26T11:22:02.4637137Z","modifiedDate":"2022-05-26T11:22:02.4637137Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003","name":"laws000003","type":"Microsoft.OperationalInsights/workspaces"}' + string: '{"properties":{"customerId":"c8dfd7c1-fcdb-4ec4-ae88-52f0cf82bf80","provisioningState":"Succeeded","sku":{"name":"PerGB2018","lastSkuUpdate":"2022-06-29T09:14:00.6298382Z"},"retentionInDays":30,"features":{"legacy":0,"searchVersion":1,"enableLogAccessUsingOnlyResourcePermissions":true},"workspaceCapping":{"dailyQuotaGb":-1.0,"quotaNextResetTime":"2022-06-29T15:00:00Z","dataIngestionStatus":"RespectQuota"},"publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled","createdDate":"2022-06-29T09:14:00.6298382Z","modifiedDate":"2022-06-29T09:14:00.6298382Z"},"location":"westus","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003","name":"laws000003","type":"Microsoft.OperationalInsights/workspaces"}' headers: access-control-allow-origin: - '*' @@ -1845,7 +2002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:22:35 GMT + - Wed, 29 Jun 2022 09:14:32 GMT expires: - '-1' pragma: @@ -1881,12 +2038,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Disabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Disabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -1895,7 +2052,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:22:36 GMT + - Wed, 29 Jun 2022 09:14:34 GMT expires: - '-1' pragma: @@ -1927,7 +2084,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -1941,7 +2098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:22:39 GMT + - Wed, 29 Jun 2022 09:14:37 GMT expires: - '-1' pragma: @@ -1978,7 +2135,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings/SQLSecurityAuditEvents_LogAnalytics?api-version=2017-05-01-preview response: @@ -1992,7 +2149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:22:47 GMT + - Wed, 29 Jun 2022 09:14:48 GMT expires: - '-1' pragma: @@ -2026,7 +2183,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=name%20eq%20%27adlsgen2000002%27%20and%20%28resourceType%20eq%20%27Microsoft.Storage%2FstorageAccounts%27%20or%20resourceType%20eq%20%27Microsoft.ClassicStorage%2FstorageAccounts%27%29&api-version=2021-04-01 response: @@ -2040,15 +2197,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:22:48 GMT + - Wed, 29 Jun 2022 09:14:49 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -2070,12 +2225,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002/listKeys?api-version=2021-09-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -2084,7 +2239,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 11:22:50 GMT + - Wed, 29 Jun 2022 09:14:50 GMT expires: - '-1' pragma: @@ -2100,7 +2255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 200 message: OK @@ -2108,7 +2263,7 @@ interactions: body: '{"properties": {"state": "Enabled", "storageEndpoint": "https://adlsgen2000002.blob.core.windows.net/", "storageAccountAccessKey": "veryFakedStorageAccountKey==", "retentionDays": 30, "auditActionsAndGroups": ["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"], "storageAccountSubscriptionId": - "0b1f6471-1bf0-4dda-aec3-cb9272f09590", "isStorageSecondaryKeyInUse": false, + "051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3", "isStorageSecondaryKeyInUse": false, "isAzureMonitorTargetEnabled": true}}' headers: Accept: @@ -2126,12 +2281,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -2140,7 +2295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:22:53 GMT + - Wed, 29 Jun 2022 09:14:54 GMT expires: - '-1' pragma: @@ -2152,7 +2307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 201 message: Created @@ -2170,12 +2325,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -2184,7 +2339,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:22:55 GMT + - Wed, 29 Jun 2022 09:14:56 GMT expires: - '-1' pragma: @@ -2216,7 +2371,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -2230,7 +2385,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:22:58 GMT + - Wed, 29 Jun 2022 09:14:59 GMT expires: - '-1' pragma: @@ -2262,12 +2417,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -2276,7 +2431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:23:00 GMT + - Wed, 29 Jun 2022 09:15:01 GMT expires: - '-1' pragma: @@ -2308,7 +2463,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -2322,7 +2477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:23:03 GMT + - Wed, 29 Jun 2022 09:15:03 GMT expires: - '-1' pragma: @@ -2356,7 +2511,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings/SQLSecurityAuditEvents_LogAnalytics?api-version=2017-05-01-preview response: @@ -2368,7 +2523,7 @@ interactions: content-length: - '0' date: - - Thu, 26 May 2022 11:23:09 GMT + - Wed, 29 Jun 2022 09:15:11 GMT expires: - '-1' pragma: @@ -2380,7 +2535,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14999' status: code: 200 message: OK @@ -2398,7 +2553,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=name%20eq%20%27adlsgen2000002%27%20and%20%28resourceType%20eq%20%27Microsoft.Storage%2FstorageAccounts%27%20or%20resourceType%20eq%20%27Microsoft.ClassicStorage%2FstorageAccounts%27%29&api-version=2021-04-01 response: @@ -2412,7 +2567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:23:10 GMT + - Wed, 29 Jun 2022 09:15:12 GMT expires: - '-1' pragma: @@ -2442,12 +2597,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002/listKeys?api-version=2021-09-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -2456,7 +2611,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 11:23:11 GMT + - Wed, 29 Jun 2022 09:15:14 GMT expires: - '-1' pragma: @@ -2465,14 +2620,10 @@ interactions: - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11999' status: code: 200 message: OK @@ -2480,7 +2631,7 @@ interactions: body: '{"properties": {"state": "Enabled", "storageEndpoint": "https://adlsgen2000002.blob.core.windows.net/", "storageAccountAccessKey": "veryFakedStorageAccountKey==", "retentionDays": 30, "auditActionsAndGroups": ["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"], "storageAccountSubscriptionId": - "0b1f6471-1bf0-4dda-aec3-cb9272f09590", "isStorageSecondaryKeyInUse": false, + "051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3", "isStorageSecondaryKeyInUse": false, "isAzureMonitorTargetEnabled": false}}' headers: Accept: @@ -2498,12 +2649,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -2512,7 +2663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:23:15 GMT + - Wed, 29 Jun 2022 09:15:20 GMT expires: - '-1' pragma: @@ -2521,14 +2672,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-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 200 message: OK @@ -2546,12 +2693,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -2560,7 +2707,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:23:16 GMT + - Wed, 29 Jun 2022 09:15:22 GMT expires: - '-1' pragma: @@ -2596,22 +2743,22 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006","name":"ehnamespace000006","type":"Microsoft.EventHub/Namespaces","location":"East - US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespace000006","createdAt":"2022-05-26T11:23:20.5Z","updatedAt":"2022-05-26T11:23:20.5Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Activating"}}' + US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000006","createdAt":"2022-06-29T09:15:29.86Z","updatedAt":"2022-06-29T09:15:29.86Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '714' + - '716' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:23:21 GMT + - Wed, 29 Jun 2022 09:15:30 GMT expires: - '-1' pragma: @@ -2623,10 +2770,6 @@ interactions: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -2648,22 +2791,22 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006","name":"ehnamespace000006","type":"Microsoft.EventHub/Namespaces","location":"East - US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespace000006","createdAt":"2022-05-26T11:23:20.5Z","updatedAt":"2022-05-26T11:23:20.5Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Activating"}}' + US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000006","createdAt":"2022-06-29T09:15:29.86Z","updatedAt":"2022-06-29T09:15:29.86Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '714' + - '716' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:23:51 GMT + - Wed, 29 Jun 2022 09:16:02 GMT expires: - '-1' pragma: @@ -2675,10 +2818,6 @@ interactions: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -2698,22 +2837,22 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006","name":"ehnamespace000006","type":"Microsoft.EventHub/Namespaces","location":"East - US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespace000006","createdAt":"2022-05-26T11:23:20.5Z","updatedAt":"2022-05-26T11:24:13.697Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Active"}}' + US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000006","createdAt":"2022-06-29T09:15:29.86Z","updatedAt":"2022-06-29T09:16:19.4Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '714' + - '713' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:23 GMT + - Wed, 29 Jun 2022 09:16:35 GMT expires: - '-1' pragma: @@ -2725,10 +2864,6 @@ interactions: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -2748,37 +2883,33 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006","name":"ehnamespace000006","type":"Microsoft.EventHub/Namespaces","location":"East - US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespace000006","createdAt":"2022-05-26T11:23:20.5Z","updatedAt":"2022-05-26T11:24:13.697Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Active"}}' + US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000006","createdAt":"2022-06-29T09:15:29.86Z","updatedAt":"2022-06-29T09:16:19.4Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '714' + - '713' content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:24 GMT + - Wed, 29 Jun 2022 09:16:36 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -2802,13 +2933,13 @@ interactions: ParameterSetName: - --resource-group -n --namespace-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006/eventhubs/ehsrv000005?api-version=2022-01-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006/eventhubs/ehsrv000005","name":"ehsrv000005","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"East - US","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2022-05-26T11:24:28.82Z","updatedAt":"2022-05-26T11:24:29.017Z","partitionIds":["0","1","2","3"]}}' + US","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2022-06-29T09:16:41.78Z","updatedAt":"2022-06-29T09:16:42.027Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache @@ -2817,7 +2948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:29 GMT + - Wed, 29 Jun 2022 09:16:41 GMT expires: - '-1' pragma: @@ -2836,7 +2967,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 200 message: OK @@ -2858,7 +2989,7 @@ interactions: ParameterSetName: - --resource-group -n --namespace-name --rights User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-eventhub/10.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006/authorizationRules/ehauthruledb000007?api-version=2022-01-01-preview response: @@ -2873,7 +3004,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:36 GMT + - Wed, 29 Jun 2022 09:16:49 GMT expires: - '-1' pragma: @@ -2892,7 +3023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - '1198' status: code: 200 message: OK @@ -2911,12 +3042,12 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -2925,7 +3056,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:38 GMT + - Wed, 29 Jun 2022 09:16:52 GMT expires: - '-1' pragma: @@ -2958,7 +3089,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -2972,7 +3103,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:41 GMT + - Wed, 29 Jun 2022 09:16:56 GMT expires: - '-1' pragma: @@ -3011,7 +3142,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings/SQLSecurityAuditEvents_EventHub?api-version=2017-05-01-preview response: @@ -3025,7 +3156,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:52 GMT + - Wed, 29 Jun 2022 09:17:05 GMT expires: - '-1' pragma: @@ -3034,10 +3165,6 @@ interactions: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -3060,7 +3187,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=name%20eq%20%27adlsgen2000002%27%20and%20%28resourceType%20eq%20%27Microsoft.Storage%2FstorageAccounts%27%20or%20resourceType%20eq%20%27Microsoft.ClassicStorage%2FstorageAccounts%27%29&api-version=2021-04-01 response: @@ -3074,7 +3201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:53 GMT + - Wed, 29 Jun 2022 09:17:05 GMT expires: - '-1' pragma: @@ -3105,12 +3232,12 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002/listKeys?api-version=2021-09-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -3119,7 +3246,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 11:24:55 GMT + - Wed, 29 Jun 2022 09:17:08 GMT expires: - '-1' pragma: @@ -3135,7 +3262,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' status: code: 200 message: OK @@ -3143,7 +3270,7 @@ interactions: body: '{"properties": {"state": "Enabled", "storageEndpoint": "https://adlsgen2000002.blob.core.windows.net/", "storageAccountAccessKey": "veryFakedStorageAccountKey==", "retentionDays": 30, "auditActionsAndGroups": ["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"], "storageAccountSubscriptionId": - "0b1f6471-1bf0-4dda-aec3-cb9272f09590", "isStorageSecondaryKeyInUse": false, + "051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3", "isStorageSecondaryKeyInUse": false, "isAzureMonitorTargetEnabled": true}}' headers: Accept: @@ -3162,12 +3289,12 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -3176,7 +3303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:57 GMT + - Wed, 29 Jun 2022 09:17:10 GMT expires: - '-1' pragma: @@ -3192,7 +3319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1197' status: code: 200 message: OK @@ -3210,12 +3337,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -3224,7 +3351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:24:59 GMT + - Wed, 29 Jun 2022 09:17:12 GMT expires: - '-1' pragma: @@ -3256,7 +3383,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -3270,7 +3397,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:25:02 GMT + - Wed, 29 Jun 2022 09:17:14 GMT expires: - '-1' pragma: @@ -3302,12 +3429,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --event-hub-target-state User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":true,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -3316,7 +3443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:25:03 GMT + - Wed, 29 Jun 2022 09:17:15 GMT expires: - '-1' pragma: @@ -3348,7 +3475,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --event-hub-target-state User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -3362,7 +3489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:25:06 GMT + - Wed, 29 Jun 2022 09:17:17 GMT expires: - '-1' pragma: @@ -3396,7 +3523,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --event-hub-target-state User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-monitor/3.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlpools/testsqlpool000004/providers/Microsoft.Insights/diagnosticSettings/SQLSecurityAuditEvents_EventHub?api-version=2017-05-01-preview response: @@ -3408,7 +3535,7 @@ interactions: content-length: - '0' date: - - Thu, 26 May 2022 11:25:10 GMT + - Wed, 29 Jun 2022 09:17:24 GMT expires: - '-1' pragma: @@ -3420,7 +3547,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 200 message: OK @@ -3438,7 +3565,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --event-hub-target-state User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=name%20eq%20%27adlsgen2000002%27%20and%20%28resourceType%20eq%20%27Microsoft.Storage%2FstorageAccounts%27%20or%20resourceType%20eq%20%27Microsoft.ClassicStorage%2FstorageAccounts%27%29&api-version=2021-04-01 response: @@ -3452,15 +3579,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:25:11 GMT + - Wed, 29 Jun 2022 09:17:25 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -3482,12 +3607,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --event-hub-target-state User-Agent: - - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Storage/storageAccounts/adlsgen2000002/listKeys?api-version=2021-09-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-26T11:12:29.4672537Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-06-29T09:02:11.8058534Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -3496,7 +3621,7 @@ interactions: content-type: - application/json date: - - Thu, 26 May 2022 11:25:13 GMT + - Wed, 29 Jun 2022 09:17:28 GMT expires: - '-1' pragma: @@ -3520,7 +3645,7 @@ interactions: body: '{"properties": {"state": "Enabled", "storageEndpoint": "https://adlsgen2000002.blob.core.windows.net/", "storageAccountAccessKey": "veryFakedStorageAccountKey==", "retentionDays": 30, "auditActionsAndGroups": ["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"], "storageAccountSubscriptionId": - "0b1f6471-1bf0-4dda-aec3-cb9272f09590", "isStorageSecondaryKeyInUse": false, + "051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3", "isStorageSecondaryKeyInUse": false, "isAzureMonitorTargetEnabled": false}}' headers: Accept: @@ -3538,12 +3663,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --event-hub-target-state User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -3552,7 +3677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:25:16 GMT + - Wed, 29 Jun 2022 09:17:31 GMT expires: - '-1' pragma: @@ -3568,7 +3693,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 200 message: OK @@ -3586,12 +3711,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/default?api-version=2021-06-01 response: body: - string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' + string: '{"properties":{"retentionDays":30,"auditActionsAndGroups":["SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP"],"isStorageSecondaryKeyInUse":false,"isAzureMonitorTargetEnabled":false,"state":"Enabled","storageEndpoint":"https://adlsgen2000002.blob.core.windows.net/","storageAccountSubscriptionId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/sqlPools/testsqlpool000004/auditingSettings/Default","name":"Default","type":"Microsoft.Synapse/workspaces/sqlPools/auditingSettings"}' headers: cache-control: - no-cache @@ -3600,7 +3725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 26 May 2022 11:25:18 GMT + - Wed, 29 Jun 2022 09:17:32 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_pool_tde.yaml b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_pool_tde.yaml index 460b2f02060..d04e40d8d43 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_pool_tde.yaml +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_pool_tde.yaml @@ -21,15 +21,15 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-659e3be3-8c25-42dd-b704-00de0ee5e374","privateEndpointConnections":[],"workspaceUID":"d0250bca-7018-4ed6-bdc4-0293fb2111e1","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"317936d4-fd51-496b-b7d5-6bc4983804c4"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-692b86d4-406b-422e-93bb-a614e5a9d30c","privateEndpointConnections":[],"workspaceUID":"387757db-ff79-4b16-ad04-c274f0f9a9e5","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b961e85c-18bc-451f-80a3-f027d5ce5494"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/d8667d13-a6ec-4457-a57e-154e679d633f?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/1ce66af2-addc-4f38-af2c-6e79020b6b4f?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -37,7 +37,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:29:17 GMT + - Wed, 15 Jun 2022 05:36:34 GMT expires: - '-1' pragma: @@ -49,7 +49,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -68,9 +68,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/d8667d13-a6ec-4457-a57e-154e679d633f?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/1ce66af2-addc-4f38-af2c-6e79020b6b4f?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:29:48 GMT + - Wed, 15 Jun 2022 05:37:06 GMT expires: - '-1' pragma: @@ -115,9 +115,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/d8667d13-a6ec-4457-a57e-154e679d633f?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/1ce66af2-addc-4f38-af2c-6e79020b6b4f?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:30:19 GMT + - Wed, 15 Jun 2022 05:37:36 GMT expires: - '-1' pragma: @@ -162,9 +162,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/d8667d13-a6ec-4457-a57e-154e679d633f?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/1ce66af2-addc-4f38-af2c-6e79020b6b4f?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -176,7 +176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:30:51 GMT + - Wed, 15 Jun 2022 05:38:07 GMT expires: - '-1' pragma: @@ -209,9 +209,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/d8667d13-a6ec-4457-a57e-154e679d633f?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/1ce66af2-addc-4f38-af2c-6e79020b6b4f?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -223,7 +223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:31:21 GMT + - Wed, 15 Jun 2022 05:38:37 GMT expires: - '-1' pragma: @@ -256,9 +256,56 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/d8667d13-a6ec-4457-a57e-154e679d633f?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/1ce66af2-addc-4f38-af2c-6e79020b6b4f?api-version=2021-06-01 + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 05:39:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse workspace create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/1ce66af2-addc-4f38-af2c-6e79020b6b4f?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -270,7 +317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:31:52 GMT + - Wed, 15 Jun 2022 05:39:40 GMT expires: - '-1' pragma: @@ -303,12 +350,12 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-659e3be3-8c25-42dd-b704-00de0ee5e374","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"d0250bca-7018-4ed6-bdc4-0293fb2111e1","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"317936d4-fd51-496b-b7d5-6bc4983804c4"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-692b86d4-406b-422e-93bb-a614e5a9d30c","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"387757db-ff79-4b16-ad04-c274f0f9a9e5","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b961e85c-18bc-451f-80a3-f027d5ce5494"}}' headers: cache-control: - no-cache @@ -317,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:31:53 GMT + - Wed, 15 Jun 2022 05:39:41 GMT expires: - '-1' pragma: @@ -349,12 +396,12 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f0b1f6471-1bf0-4dda-aec3-cb9272f09590%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-659e3be3-8c25-42dd-b704-00de0ee5e374","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"d0250bca-7018-4ed6-bdc4-0293fb2111e1","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"674368bb-7eaa-4100-aef7-138f65f50648"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"317936d4-fd51-496b-b7d5-6bc4983804c4"}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2f051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000004","dev":"https://clitest000004.dev.azuresynapse.net","sqlOnDemand":"clitest000004-ondemand.sql.azuresynapse.net","sql":"clitest000004.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-692b86d4-406b-422e-93bb-a614e5a9d30c","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"387757db-ff79-4b16-ad04-c274f0f9a9e5","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"6a33200f-2b27-4fda-8567-b0c70d532441"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004","location":"eastus","name":"clitest000004","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b961e85c-18bc-451f-80a3-f027d5ce5494"}}' headers: cache-control: - no-cache @@ -363,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:31:57 GMT + - Wed, 15 Jun 2022 05:39:42 GMT expires: - '-1' pragma: @@ -400,7 +447,7 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/sqlPools/testsqlpool000003?api-version=2021-06-01 response: @@ -414,7 +461,7 @@ interactions: - Location - Retry-After azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -422,11 +469,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:32:03 GMT + - Wed, 15 Jun 2022 05:39:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 pragma: - no-cache server: @@ -436,7 +483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -454,9 +501,101 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 05:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse sql pool create + Connection: + - keep-alive + ParameterSetName: + - --name --performance-level --workspace --resource-group --storage-type + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jun 2022 05:40:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse sql pool create + Connection: + - keep-alive + ParameterSetName: + - --name --performance-level --workspace --resource-group --storage-type + User-Agent: + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -468,7 +607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:32:14 GMT + - Wed, 15 Jun 2022 05:41:03 GMT expires: - '-1' pragma: @@ -500,9 +639,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -514,7 +653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:32:45 GMT + - Wed, 15 Jun 2022 05:41:33 GMT expires: - '-1' pragma: @@ -546,9 +685,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -560,7 +699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:33:16 GMT + - Wed, 15 Jun 2022 05:42:04 GMT expires: - '-1' pragma: @@ -592,9 +731,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -606,7 +745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:33:47 GMT + - Wed, 15 Jun 2022 05:42:34 GMT expires: - '-1' pragma: @@ -638,9 +777,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -652,7 +791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:34:18 GMT + - Wed, 15 Jun 2022 05:43:06 GMT expires: - '-1' pragma: @@ -684,9 +823,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -698,7 +837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:34:49 GMT + - Wed, 15 Jun 2022 05:43:37 GMT expires: - '-1' pragma: @@ -730,9 +869,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -744,7 +883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:35:19 GMT + - Wed, 15 Jun 2022 05:44:08 GMT expires: - '-1' pragma: @@ -776,9 +915,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -790,7 +929,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:35:51 GMT + - Wed, 15 Jun 2022 05:44:38 GMT expires: - '-1' pragma: @@ -822,9 +961,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -836,7 +975,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:36:22 GMT + - Wed, 15 Jun 2022 05:45:10 GMT expires: - '-1' pragma: @@ -868,9 +1007,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -882,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:36:53 GMT + - Wed, 15 Jun 2022 05:45:41 GMT expires: - '-1' pragma: @@ -914,9 +1053,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -928,7 +1067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:37:24 GMT + - Wed, 15 Jun 2022 05:46:12 GMT expires: - '-1' pragma: @@ -960,9 +1099,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationStatuses/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -974,7 +1113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:37:55 GMT + - Wed, 15 Jun 2022 05:46:43 GMT expires: - '-1' pragma: @@ -1006,21 +1145,21 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group --storage-type User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/887bfd20-9351-4736-8b3c-f76ce4d42789?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/operationResults/a4db10b1-6971-4f6c-9197-8b39257b47c4?api-version=2021-06-01 response: body: - string: '{"properties":{"status":"Online","maxSizeBytes":263882790666240,"collation":"SQL_Latin1_General_CP1_CI_AS","creationDate":"2022-05-30T07:37:39.777Z","storageAccountType":"GRS","provisioningState":"Succeeded"},"sku":{"name":"DW400c","capacity":0},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/sqlPools/testsqlpool000003","name":"testsqlpool000003","type":"Microsoft.Synapse/workspaces/sqlPools","location":"eastus"}' + string: '{"properties":{"status":"Online","maxSizeBytes":263882790666240,"collation":"SQL_Latin1_General_CP1_CI_AS","creationDate":"2022-06-15T05:46:36.5Z","storageAccountType":"GRS","provisioningState":"Succeeded"},"sku":{"name":"DW400c","capacity":0},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/sqlPools/testsqlpool000003","name":"testsqlpool000003","type":"Microsoft.Synapse/workspaces/sqlPools","location":"eastus"}' headers: cache-control: - no-cache content-length: - - '512' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:37:57 GMT + - Wed, 15 Jun 2022 05:46:44 GMT expires: - '-1' pragma: @@ -1052,7 +1191,7 @@ interactions: ParameterSetName: - --status --name --workspace-name --resource-group --transparent-data-encryption-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/sqlPools/testsqlpool000003/transparentDataEncryption/current?api-version=2021-06-01 response: @@ -1066,7 +1205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:38:31 GMT + - Wed, 15 Jun 2022 05:47:15 GMT expires: - '-1' pragma: @@ -1082,7 +1221,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -1100,7 +1239,7 @@ interactions: ParameterSetName: - --name --workspace-name --resource-group --transparent-data-encryption-name User-Agent: - - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.5 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.37.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000004/sqlPools/testsqlpool000003/transparentDataEncryption/current?api-version=2021-06-01 response: @@ -1114,7 +1253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 30 May 2022 07:38:35 GMT + - Wed, 15 Jun 2022 05:47:17 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py index 6113dd67791..e90785530d5 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/test_synapse_scenario.py @@ -2987,3 +2987,73 @@ def test_sqlscript(self): 'az synapse sql-script show --workspace-name {workspace} --name {name}', expect_failure=True) + @record_only() + def test_link_connection(self): + self.kwargs.update({ + 'workspace_name': 'xiaoyuxingtestne', + 'link_connection_name': 'linkconnectionfortest', + 'link_table_id': '887e9d4df0fa4afaaad0d7a2c7f42d88', + 'edit_table_file': os.path.join(os.path.join(os.path.dirname(__file__), 'assets'), 'link-connection-table.json'), + 'file': os.path.join(os.path.join(os.path.dirname(__file__), 'assets'), 'linkconnectionfortest.json') + }) + # create link connnection + self.cmd( + 'az synapse link-connection create --workspace-name {workspace_name} ' + '--name {link_connection_name} --file @"{file}" ', + checks=[ + self.check('name', self.kwargs['link_connection_name']) + ]) + + time.sleep(600) + # get link connnection + self.cmd( + 'az synapse link-connection show --workspace-name {workspace_name} --name {link_connection_name}', + checks=[ + self.check('name', self.kwargs['link_connection_name']) + ]) + + # list link connnection + self.cmd( + 'az synapse link-connection list --workspace-name {workspace_name}', + checks=[ + self.check('[0].type', 'Microsoft.Synapse/workspaces/linkconnections') + ]) + + # edit link tables + self.cmd( + 'az synapse link-connection edit-link-tables --workspace-name {workspace_name} --n {link_connection_name} --file @"{edit_table_file}" ') + + time.sleep(600) + # start a link connnection + self.cmd( + 'az synapse link-connection start --workspace-name {workspace_name} --name {link_connection_name}') + self.cmd( + 'az synapse link-connection get-status --workspace-name {workspace_name} --name {link_connection_name}', + checks=[ + self.check('status', 'Starting') + ]) + + # stop a link connnection + self.cmd( + 'az synapse link-connection stop --workspace-name {workspace_name} --name {link_connection_name}') + self.cmd( + 'az synapse link-connection get-status --workspace-name {workspace_name} --name {link_connection_name}', + checks=[ + self.check('status', 'Stopping') + ]) + + # list link tables + self.cmd( + 'az synapse link-connection list-link-tables --workspace-name {workspace_name} --n {link_connection_name} ', + checks=[ + self.check('[0].id', self.kwargs['link_table_id']) + ]) + + time.sleep(300) + #delete a link connnection + self.cmd( + 'az synapse link-connection delete --workspace-name {workspace_name} --name {link_connection_name}') + self.cmd( + 'az synapse link-connection show --workspace-name {workspace_name} --name {link_connection_name}', + expect_failure=True) + diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 58922757f24..0e49bc947f0 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -89,7 +89,7 @@ azure-multiapi-storage==0.9.0 azure-nspkg==3.0.2 azure-storage-common==1.4.2 azure-synapse-accesscontrol==0.5.0 -azure-synapse-artifacts==0.12.0 +azure-synapse-artifacts==0.13.0 azure-synapse-managedprivateendpoints==0.3.0 azure-synapse-spark==0.2.0 bcrypt==3.2.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 669e8b71a4e..e718cccf5fc 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -89,7 +89,7 @@ azure-multiapi-storage==0.9.0 azure-nspkg==3.0.2 azure-storage-common==1.4.2 azure-synapse-accesscontrol==0.5.0 -azure-synapse-artifacts==0.12.0 +azure-synapse-artifacts==0.13.0 azure-synapse-managedprivateendpoints==0.3.0 azure-synapse-spark==0.2.0 bcrypt==3.2.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index f4922ea7b9e..5816347adf5 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -89,7 +89,7 @@ azure-multiapi-storage==0.9.0 azure-nspkg==3.0.2 azure-storage-common==1.4.2 azure-synapse-accesscontrol==0.5.0 -azure-synapse-artifacts==0.12.0 +azure-synapse-artifacts==0.13.0 azure-synapse-managedprivateendpoints==0.3.0 azure-synapse-spark==0.2.0 bcrypt==3.2.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 05558cd05cb..e0257871719 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -133,7 +133,7 @@ 'azure-multiapi-storage~=0.9.0', 'azure-storage-common~=1.4', 'azure-synapse-accesscontrol~=0.5.0', - 'azure-synapse-artifacts~=0.12.0', + 'azure-synapse-artifacts~=0.13.0', 'azure-synapse-managedprivateendpoints~=0.3.0', 'azure-synapse-spark~=0.2.0', 'chardet~=3.0.4',