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 26092459190..8c105e8e9d6 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 @@ -242,3 +242,11 @@ def cf_synapse_managedprivateendpoints_factory(cli_ctx, workspace_name): def cf_synapse_spark_job_definition(cli_ctx, workspace_name): return cf_synapse_client_artifacts_factory(cli_ctx, workspace_name).spark_job_definition + + +def cf_kusto_script(cli_ctx, workspace_name): + return cf_synapse_client_artifacts_factory(cli_ctx, workspace_name).kql_script + + +def cf_kusto_scripts(cli_ctx, workspace_name): + return cf_synapse_client_artifacts_factory(cli_ctx, workspace_name).kql_scripts 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 44b1f6af640..11eff67c47e 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 @@ -2135,3 +2135,71 @@ type: group short-summary: "Manage synapse kusto" """ + +helps['synapse kql-script'] = """ + type: group + short-summary: Manage script with kusto +""" + +helps['synapse kql-script show'] = """ + type: command + short-summary: "Gets a KQL script." + examples: + - name: KustoScriptsGet + text: |- + az synapse kql-script show --workspace-name "kustoWorkspaceName" --name "kustoScript1" +""" + +helps['synapse kql-script list'] = """ + type: command + short-summary: "List KQL scripts." + examples: + - name: KustoScriptsList + text: |- + az synapse kql-script list --workspace-name "kustoWorkspaceName" +""" + +helps['synapse kql-script create'] = """ + type: command + short-summary: "Creates a KQL script." + examples: + - name: KustoScriptsCreateOrUpdate + text: |- + az synapse kql-script create --resource-group "kustorptest" --workspace-name "kustoWorkspaceName" \ + --kusto-pool-name kustopooltest --kusto-database-name kustodbtest --file C:\\samples\\KqlScript.kql \ + --name "kustoScript1" +""" + +helps['synapse kql-script import'] = """ + type: command + short-summary: "Creates a KQL script." + examples: + - name: KustoScriptsCreateOrUpdate + text: |- + az synapse kql-script import --resource-group "kustorptest" --workspace-name "kustoWorkspaceName" \ + --kusto-pool-name kustopooltest --kusto-database-name kustodbtest --file C:\\samples\\KqlScript.kql \ + --name "kustoScript1" +""" + +helps['synapse kql-script export'] = """ + type: command + short-summary: "Export KQL scripts." + examples: + - name: KustoScriptsExport + text: |- + az synapse kql-script export --workspace-name "kustoWorkspaceName" --output-folder "C:\\KqlScirpt" +""" + +helps['synapse kql-script delete'] = """ + type: command + short-summary: "Deletes a KQL script" + examples: + - name: KustoScriptsDelete + text: |- + az synapse kql-script delete --workspace-name "kustoWorkspaceName" --name "kustoScript1" +""" + +helps['synapse kql-script wait'] = """ + type: command + short-summary: "Place the CLI in a waiting state until a condition of a KQL script is met." +""" 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 33032f65266..de69c1b1883 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 @@ -1042,3 +1042,26 @@ def load_arguments(self, _): options_list=['--attached-database-configuration-name', '--adcn'], type=str, help='Resource name of the attached database ' 'configuration in the follower cluster.') + + for scope in ['import', 'create']: + with self.argument_context('synapse kql-script ' + scope) as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type, help='The name of the workspace') + c.argument('kusto_pool_name', type=str, help='The name of the Kusto pool.') + c.argument('kusto_database_name', type=str, help='The name of the Kusto database.') + c.argument('script_name', arg_type=name_type, help='The name of the KQL script.') + c.argument('definition_file', options_list=['--file', '-f'], type=file_type, completer=FilesCompleter(), + help='The KQL query file path') + + for scope in ['show', 'wait', 'delete']: + with self.argument_context('synapse kql-script ' + scope) as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type, help='The name of the workspace') + c.argument('script_name', arg_type=name_type, + help='The name of the KQL script.') + + with self.argument_context('synapse kql-script list') as c: + c.argument('workspace_name', arg_type=workspace_name_arg_type, help='The name of the workspace') + + with self.argument_context('synapse kql-script export') as c: + 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.') 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 617be668ce0..428721180ca 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 @@ -30,6 +30,8 @@ def load_command_table(self, _): from ._client_factory import cf_synapse_client_integrationruntimeconnectioninfos_factory from ._client_factory import cf_synapse_client_integrationruntimestatus_factory from ._client_factory import cf_kusto_pool + from ._client_factory import cf_kusto_script + from ._client_factory import cf_kusto_scripts def get_custom_sdk(custom_module, client_factory): return CliCommandType( @@ -195,6 +197,12 @@ def get_custom_sdk(custom_module, client_factory): operations_tmpl='azure.mgmt.synapse.operations._kusto_pools_operations#KustoPoolsOperations.{}', client_factory=cf_kusto_pool, ) + + synapse_kusto_script_sdk = CliCommandType( + operations_tmpl='azure.synapse.artifacts.operations#KqlScriptOperations.{}', + client_factory=cf_kusto_script, + ) + # 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), @@ -544,3 +552,14 @@ def get_custom_sdk(custom_module, client_factory): g.custom_command('add-language-extension', 'synapse_kusto_pool_add_language_extension', supports_no_wait=True) g.custom_command('detach-follower-database', 'synapse_kusto_pool_detach_follower_database', supports_no_wait=True) g.custom_command('remove-language-extension', 'synapse_kusto_pool_remove_language_extension', supports_no_wait=True) + + with self.command_group('synapse kql-script', command_type=synapse_kusto_script_sdk, + custom_command_type=get_custom_sdk('kustopool', cf_kusto_script), + client_factory=cf_kusto_script) as g: + g.custom_show_command('show', 'synapse_kusto_script_show') + g.custom_command('create', 'synapse_kusto_script_create', supports_no_wait=True) + g.custom_command('import', 'synapse_kusto_script_create', supports_no_wait=True) + g.custom_command('delete', 'synapse_kusto_script_delete', supports_no_wait=True, confirmation=True) + 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') diff --git a/src/azure-cli/azure/cli/command_modules/synapse/manual/operations/kustopool.py b/src/azure-cli/azure/cli/command_modules/synapse/manual/operations/kustopool.py index 83b73c97634..52af61f6599 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/manual/operations/kustopool.py +++ b/src/azure-cli/azure/cli/command_modules/synapse/manual/operations/kustopool.py @@ -3,8 +3,10 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # pylint: disable=unused-argument, line-too-long -from azure.cli.core.util import sdk_no_wait -from .._client_factory import cf_synapse_client_workspace_factory +from azure.cli.core.util import sdk_no_wait, read_file_content, CLIError +from .._client_factory import cf_synapse_client_workspace_factory, cf_kusto_script, cf_kusto_scripts +from azure.synapse.artifacts.models import KqlScriptResource, KqlScript, KqlScriptContent, KqlScriptContentMetadata, KqlScriptContentCurrentConnection +import os # Synapse kustopool @@ -147,3 +149,76 @@ def synapse_kusto_pool_detach_follower_database(client, kusto_pool_name=kusto_pool_name, resource_group_name=resource_group_name, follower_database_to_remove=follower_database_to_remove) + + +def synapse_kusto_script_show(cmd, client, + workspace_name, + script_name): + client = cf_kusto_script(cmd.cli_ctx, workspace_name) + return client.get_by_name(kql_script_name=script_name) + + +def synapse_kusto_script_create(cmd, client, + resource_group_name, + workspace_name, + script_name, + definition_file, + kusto_pool_name=None, + kusto_database_name=None, + no_wait=False): + + client = cf_kusto_script(cmd.cli_ctx, workspace_name) + query = read_file_content(definition_file) + metadata = KqlScriptContentMetadata(language="kql") + current_connection = KqlScriptContentCurrentConnection(pool_name=kusto_pool_name, + database_name=kusto_database_name) + script_content = KqlScriptContent(query=query, metadata=metadata, current_connection=current_connection) + properties = KqlScript(content=script_content) + kql_script = KqlScriptResource(name=script_name, properties=properties) + return sdk_no_wait(no_wait, + client.begin_create_or_update, + kql_script_name=script_name, + kql_script=kql_script + ) + + +def synapse_kusto_script_delete(cmd, client, + workspace_name, + script_name, + no_wait=False): + client = cf_kusto_script(cmd.cli_ctx, workspace_name) + + return sdk_no_wait(no_wait, + client.begin_delete_by_name, + kql_script_name=script_name) + + +def synapse_kusto_script_list(cmd, client, + workspace_name): + client = cf_kusto_scripts(cmd.cli_ctx, workspace_name) + return client.get_all() + + +def synapse_kusto_script_export(cmd, workspace_name, output_folder, script_name=None): + if script_name is not None: + kusto_script_client = cf_kusto_script(cmd.cli_ctx, workspace_name) + kql_script = kusto_script_client.get_by_name(script_name) + path = os.path.join(output_folder, script_name + '.kql') + write_to_file(kql_script, path) + else: + kusto_script_client = cf_kusto_scripts(cmd.cli_ctx, workspace_name) + kql_scripts = kusto_script_client.get_all() + for kql_script in kql_scripts: + path = os.path.join(output_folder, kql_script.name + '.kql') + write_to_file(kql_script, path) + + +def write_to_file(kql_script, path): + try: + query = '' + if hasattr(kql_script.properties.content, 'query'): + query = kql_script.properties.content.query + with open(path, 'w') as f: + f.write(query) + except IOError: + raise CLIError('Unable to export to file: {}'.format(path)) diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/kqlScript.kql b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/kqlScript.kql new file mode 100644 index 00000000000..c7174889e2c --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/assets/kqlScript.kql @@ -0,0 +1 @@ +Logs | where TimeStamp > ago(1h) | take 10 \ No newline at end of file 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 new file mode 100644 index 00000000000..4c5053be0ae --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_kusto_script.yaml @@ -0,0 +1,2580 @@ +interactions: +- request: + body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": + {"defaultDataLakeStorage": {"accountUrl": "https://adlsgen2000002.dfs.core.windows.net", + "filesystem": "testfilesystem"}, "sqlAdministratorLoginPassword": "Pswd1000008", + "sqlAdministratorLogin": "cliuser1"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse workspace create + Connection: + - keep-alive + Content-Length: + - '291' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007?api-version=2021-06-01 + response: + body: + string: '{"properties":{"defaultDataLakeStorage":{"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-277f6423-0bb1-4993-a77d-dd5685ccd122","privateEndpointConnections":[],"workspaceUID":"e98bc382-66f8-4294-b7e7-642965f6bde7","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"e3c52caa-2e3e-4db8-a025-162e13ada577"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/706633e5-3625-4b08-ba1c-47ed4f02d60d?api-version=2021-06-01 + cache-control: + - no-cache + content-length: + - '1374' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:15:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/706633e5-3625-4b08-ba1c-47ed4f02d60d?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: + - Mon, 22 Nov 2021 08:15:40 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/706633e5-3625-4b08-ba1c-47ed4f02d60d?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: + - Mon, 22 Nov 2021 08:16:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/706633e5-3625-4b08-ba1c-47ed4f02d60d?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: + - Mon, 22 Nov 2021 08:16:41 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/706633e5-3625-4b08-ba1c-47ed4f02d60d?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: + - Mon, 22 Nov 2021 08:17:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/706633e5-3625-4b08-ba1c-47ed4f02d60d?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: + - Mon, 22 Nov 2021 08:17:41 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/706633e5-3625-4b08-ba1c-47ed4f02d60d?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: + - Mon, 22 Nov 2021 08:18:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/706633e5-3625-4b08-ba1c-47ed4f02d60d?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: + - Mon, 22 Nov 2021 08:18:42 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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":{"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-277f6423-0bb1-4993-a77d-dd5685ccd122","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"e98bc382-66f8-4294-b7e7-642965f6bde7","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"e3c52caa-2e3e-4db8-a025-162e13ada577"}}' + headers: + cache-control: + - no-cache + content-length: + - '1429' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:18:43 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: '{"properties": {"endIpAddress": "255.255.255.255", "startIpAddress": "0.0.0.0"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse workspace firewall-rule create + Connection: + - keep-alive + Content-Length: + - '80' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --workspace-name --start-ip-address --end-ip-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007/firewallRules/allowAll?api-version=2021-06-01 + response: + body: + string: '{"properties":{"provisioningState":"Provisioning","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"}' + headers: + access-control-allow-headers: + - Location + 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/b8400fbb-9856-4249-acc4-e627edfc8997?api-version=2021-06-01 + cache-control: + - no-cache + content-length: + - '351' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:18:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/b8400fbb-9856-4249-acc4-e627edfc8997?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: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse workspace firewall-rule create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --workspace-name --start-ip-address --end-ip-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/b8400fbb-9856-4249-acc4-e627edfc8997?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: + - Mon, 22 Nov 2021 08:19:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse workspace firewall-rule create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --workspace-name --start-ip-address --end-ip-address + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + 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: + 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"}' + headers: + cache-control: + - no-cache + content-length: + - '348' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:19:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"name": "clitest000007", "type": "Microsoft.Synapse/workspaces"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse workspace check-name + Connection: + - keep-alive + Content-Length: + - '68' + Content-Type: + - application/json + ParameterSetName: + - --name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/checkNameAvailability?api-version=2021-06-01 + response: + body: + string: '{"available":false,"message":"Workspace name clitest000007 is not available","reason":"AlreadyExists","name":"clitest000007"}' + headers: + cache-control: + - no-cache + content-length: + - '131' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:20:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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":{"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-277f6423-0bb1-4993-a77d-dd5685ccd122","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"e98bc382-66f8-4294-b7e7-642965f6bde7","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"e3c52caa-2e3e-4db8-a025-162e13ada577"}}' + headers: + cache-control: + - no-cache + content-length: + - '1429' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:20:03 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: '{"location": "eastus", "sku": {"name": "Storage optimized", "capacity": + 2, "size": "Medium"}, "properties": {"enableStreamingIngest": true, "enablePurge": + true, "workspaceUID": "e98bc382-66f8-4294-b7e7-642965f6bde7"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto pool create + Connection: + - keep-alive + Content-Length: + - '217' + Content-Type: + - application/json + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/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":"e98bc382-66f8-4294-b7e7-642965f6bde7","provisioningState":"Creating"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + cache-control: + - no-cache + content-length: + - '531' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:20:10 GMT + etag: + - '""' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:20:10.1629362Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:20:41 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:20:10.1629362Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:21:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:20:10.1629362Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:21:41 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:22:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:22:41 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:23:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:23:42 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:24:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:24:42 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:25:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:25:44 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:26:14 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:26:44 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:27:15 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:27:45 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:28:15 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:28:45 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:29:15 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:29:46 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:30:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:30:47 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:31:18 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:31:48 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:32:19 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:32:49 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Running","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:21:52.8295011Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '509' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:33:19 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/e924a3ec-4466-4e1d-982d-791a8d16dd55","name":"e924a3ec-4466-4e1d-982d-791a8d16dd55","status":"Succeeded","startTime":"2021-11-22T08:20:10.1629362Z","endTime":"2021-11-22T08:33:22.6995545Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"d8462c45-0ce8-4047-9aa9-9ab8a86c7a04","provisioningState":"Succeeded","OperationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '512' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:33:49 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 kusto pool create + Connection: + - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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":"\"2021-11-22T08:32:37.2225289Z\"","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":"e98bc382-66f8-4294-b7e7-642965f6bde7","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '813' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:33:49 GMT + etag: + - '"2021-11-22T08:32:37.2225289Z"' + 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: '{"location": "eastus", "kind": "ReadWrite", "properties": {"softDeletePeriod": + "P1D"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto database create + Connection: + - keep-alive + Content-Length: + - '86' + Content-Type: + - application/json + ParameterSetName: + - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004?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/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/167f90c7-e6aa-428f-8c37-1c5a1ed71c4f?api-version=2021-06-01-preview + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:33:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto database create + Connection: + - keep-alive + ParameterSetName: + - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/167f90c7-e6aa-428f-8c37-1c5a1ed71c4f?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/167f90c7-e6aa-428f-8c37-1c5a1ed71c4f","name":"167f90c7-e6aa-428f-8c37-1c5a1ed71c4f","status":"Succeeded","startTime":"2021-11-22T08:33:53.6394342Z","endTime":"2021-11-22T08:33:56.2803393Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"b9820e1d-38a0-414f-a575-b75732b0948c","provisioningState":"Succeeded","OperationState":"Completed"}}' + headers: + cache-control: + - no-cache + content-length: + - '506' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:34:23 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 kusto database create + Connection: + - keep-alive + ParameterSetName: + - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name + User-Agent: + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: + body: + 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":"East + US","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":false,"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '475' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:34:24 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: '{"name": "scriptname000005", "properties": {"content": {"query": "Logs + | where TimeStamp > ago(1h) | take 10", "metadata": {"language": "kql"}, "currentConnection": + {}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '169' + Content-Type: + - application/json + User-Agent: + - azsdk-python-synapse-artifacts/0.10.0 Python/3.8.10 (Windows-10-10.0.19044-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":2797431,"state":"Creating","created":"2021-11-22T08:34:28.5866667Z","changed":"2021-11-22T08:34:28.5866667Z","type":"KqlScript","name":"scriptname000005","operationId":"e19a26db-40d7-4614-8455-7458e72566a9","artifactId":"46F781DE-D57E-4BFF-8AFB-E6C989646B26"}' + headers: + access-control-allow-headers: + - Location + - Retry-After + access-control-expose-headers: + - Location + - Retry-After + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:34:28 GMT + location: + - https://clitest000007.dev.azuresynapse.net/operationResults/e19a26db-40d7-4614-8455-7458e72566a9?api-version=2021-11-01-preview + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.10.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://clitest000007.dev.azuresynapse.net/operationResults/e19a26db-40d7-4614-8455-7458e72566a9?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","name":"scriptname000005","type":"Microsoft.Synapse/workspaces/kqlscripts","properties":{"content":{"query":"Logs + | where TimeStamp > ago(1h) | take 10","metadata":{"language":"kql"},"currentConnection":{}}},"etag":"3301701f-0000-0100-0000-619b56190000"}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:34:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"name": "scriptname2000006", "properties": {"content": {"query": "Logs + | where TimeStamp > ago(1h) | take 10", "metadata": {"language": "kql"}, "currentConnection": + {"poolName": "testkstpool000003", "databaseName": "testdtabase000004"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '233' + Content-Type: + - application/json + User-Agent: + - azsdk-python-synapse-artifacts/0.10.0 Python/3.8.10 (Windows-10-10.0.19044-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":2797433,"state":"Creating","created":"2021-11-22T08:34:41.4066667Z","changed":"2021-11-22T08:34:41.4066667Z","type":"KqlScript","name":"scriptname2000006","operationId":"38a41e30-7b44-4a0e-80fa-ea07e8273581","artifactId":"CBBD8E49-6C18-459D-A5D9-55CCDCA44CA5"}' + headers: + access-control-allow-headers: + - Location + - Retry-After + access-control-expose-headers: + - Location + - Retry-After + content-length: + - '444' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:34:41 GMT + location: + - https://clitest000007.dev.azuresynapse.net/operationResults/38a41e30-7b44-4a0e-80fa-ea07e8273581?api-version=2021-11-01-preview + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.10.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://clitest000007.dev.azuresynapse.net/operationResults/38a41e30-7b44-4a0e-80fa-ea07e8273581?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","name":"scriptname2000006","type":"Microsoft.Synapse/workspaces/kqlscripts","properties":{"content":{"query":"Logs + | where TimeStamp > ago(1h) | take 10","metadata":{"language":"kql"},"currentConnection":{"poolName":"testkstpool000003","databaseName":"testdtabase000004"}}},"etag":"3301ed23-0000-0100-0000-619b56250000"}' + headers: + cache-control: + - no-cache + content-length: + - '489' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:34:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.10.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + 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","name":"scriptname000005","type":"Microsoft.Synapse/workspaces/kqlscripts","properties":{"content":{"query":"Logs + | where TimeStamp > ago(1h) | take 10","metadata":{"language":"kql"},"currentConnection":{}}},"etag":"3301701f-0000-0100-0000-619b56190000"}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:34:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.10.0 Python/3.8.10 (Windows-10-10.0.19044-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":"3301701f-0000-0100-0000-619b56190000","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":"3301ed23-0000-0100-0000-619b56250000","properties":{"content":{"query":"Logs + | where TimeStamp > ago(1h) | take 10","metadata":{"language":"kql"},"currentConnection":{"poolName":"testkstpool000003","databaseName":"testdtabase000004"}}}}]}' + headers: + content-length: + - '930' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:34:55 GMT + server: + - 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.10.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + 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","name":"scriptname000005","type":"Microsoft.Synapse/workspaces/kqlscripts","properties":{"content":{"query":"Logs + | where TimeStamp > ago(1h) | take 10","metadata":{"language":"kql"},"currentConnection":{}}},"etag":"3301701f-0000-0100-0000-619b56190000"}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:34:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=15724800; includeSubDomains + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-synapse-artifacts/0.10.0 Python/3.8.10 (Windows-10-10.0.19044-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":"16cd51cf-a608-41f0-8af9-d0b3613ef9da"}' + headers: + access-control-allow-headers: + - Location + access-control-expose-headers: + - Location + content-length: + - '368' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:35:00 GMT + location: + - https://clitest000007.dev.azuresynapse.net/operationResults/16cd51cf-a608-41f0-8af9-d0b3613ef9da?api-version=2021-11-01-preview + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-synapse-artifacts/0.10.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://clitest000007.dev.azuresynapse.net/operationResults/16cd51cf-a608-41f0-8af9-d0b3613ef9da?api-version=2021-11-01-preview + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Mon, 22 Nov 2021 08:35:31 GMT + server: + - 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.10.0 Python/3.8.10 (Windows-10-10.0.19044-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=051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3 resourceGroup=synapse-cli000001 + workspace=clitest000007)"}' + headers: + content-length: + - '197' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 22 Nov 2021 08:35:53 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + status: + code: 404 + message: Not Found +version: 1 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 f6d04118bd2..4e48261a1de 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"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-5f329817-e13b-4f70-9d2f-7bd2a4c00fcf","privateEndpointConnections":[],"workspaceUID":"aaa526b3-fea6-4396-a3bf-66ed07872dd1","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"039cc124-a612-4d46-9b69-5e72e536672c"}}' + string: '{"properties":{"defaultDataLakeStorage":{"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-20425838-c467-4a3b-a8c5-ac8a228dc0dd","privateEndpointConnections":[],"workspaceUID":"4c6d2843-afb3-4ded-86e7-dffad8dac0fa","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"10733421-aa75-4a0b-b19d-4f120dbbb2b9"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/9e8520e9-a72b-4136-8df4-19966068ef21?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/c4bb14e9-ca95-4e2e-aa5d-a33efbb7ed46?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -37,7 +37,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:02:13 GMT + - Fri, 26 Nov 2021 03:23:46 GMT expires: - '-1' pragma: @@ -49,7 +49,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -68,56 +68,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/9e8520e9-a72b-4136-8df4-19966068ef21?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, 03 Nov 2021 12:02:43 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/9e8520e9-a72b-4136-8df4-19966068ef21?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/c4bb14e9-ca95-4e2e-aa5d-a33efbb7ed46?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -129,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:03:15 GMT + - Fri, 26 Nov 2021 03:24:16 GMT expires: - '-1' pragma: @@ -162,9 +115,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/9e8520e9-a72b-4136-8df4-19966068ef21?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/c4bb14e9-ca95-4e2e-aa5d-a33efbb7ed46?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -176,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:03:45 GMT + - Fri, 26 Nov 2021 03:24:47 GMT expires: - '-1' pragma: @@ -209,9 +162,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/9e8520e9-a72b-4136-8df4-19966068ef21?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/c4bb14e9-ca95-4e2e-aa5d-a33efbb7ed46?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -223,7 +176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:04:15 GMT + - Fri, 26 Nov 2021 03:25:19 GMT expires: - '-1' pragma: @@ -256,9 +209,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/9e8520e9-a72b-4136-8df4-19966068ef21?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/c4bb14e9-ca95-4e2e-aa5d-a33efbb7ed46?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -270,7 +223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:04:45 GMT + - Fri, 26 Nov 2021 03:25:50 GMT expires: - '-1' pragma: @@ -303,9 +256,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/9e8520e9-a72b-4136-8df4-19966068ef21?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/c4bb14e9-ca95-4e2e-aa5d-a33efbb7ed46?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -317,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:05:16 GMT + - Fri, 26 Nov 2021 03:26:20 GMT expires: - '-1' pragma: @@ -350,9 +303,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/9e8520e9-a72b-4136-8df4-19966068ef21?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/c4bb14e9-ca95-4e2e-aa5d-a33efbb7ed46?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -364,7 +317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:05:46 GMT + - Fri, 26 Nov 2021 03:26:51 GMT expires: - '-1' pragma: @@ -397,12 +350,12 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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":{"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-5f329817-e13b-4f70-9d2f-7bd2a4c00fcf","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"aaa526b3-fea6-4396-a3bf-66ed07872dd1","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"039cc124-a612-4d46-9b69-5e72e536672c"}}' + string: '{"properties":{"defaultDataLakeStorage":{"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-20425838-c467-4a3b-a8c5-ac8a228dc0dd","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"4c6d2843-afb3-4ded-86e7-dffad8dac0fa","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"10733421-aa75-4a0b-b19d-4f120dbbb2b9"}}' headers: cache-control: - no-cache @@ -411,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:05:46 GMT + - Fri, 26 Nov 2021 03:26:52 GMT expires: - '-1' pragma: @@ -443,12 +396,12 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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":{"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-5f329817-e13b-4f70-9d2f-7bd2a4c00fcf","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"aaa526b3-fea6-4396-a3bf-66ed07872dd1","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"039cc124-a612-4d46-9b69-5e72e536672c"}}' + string: '{"properties":{"defaultDataLakeStorage":{"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-20425838-c467-4a3b-a8c5-ac8a228dc0dd","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"4c6d2843-afb3-4ded-86e7-dffad8dac0fa","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"10733421-aa75-4a0b-b19d-4f120dbbb2b9"}}' headers: cache-control: - no-cache @@ -457,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:05:50 GMT + - Fri, 26 Nov 2021 03:26:53 GMT expires: - '-1' pragma: @@ -494,12 +447,12 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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 response: body: - string: '{"properties":{"maxSizeBytes":0,"restorePointInTime":"0001-01-01T00:00:00","creationDate":"0001-01-01T00:00:00","sourceDatabaseDeletionDate":"0001-01-01T00:00:00","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: '{"properties":{"maxSizeBytes":0,"creationDate":"0001-01-01T00:00:00","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 @@ -508,19 +461,19 @@ interactions: - Location - Retry-After azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/a8708aa8-b345-455c-9b92-353000add88a?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/ed1f8025-7cf7-46b6-8ab1-e477fc8478c0?api-version=2021-06-01 cache-control: - no-cache content-length: - - '480' + - '386' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:05:55 GMT + - Fri, 26 Nov 2021 03:26:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationResults/a8708aa8-b345-455c-9b92-353000add88a?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationResults/ed1f8025-7cf7-46b6-8ab1-e477fc8478c0?api-version=2021-06-01 pragma: - no-cache server: @@ -530,7 +483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -548,9 +501,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/a8708aa8-b345-455c-9b92-353000add88a?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/ed1f8025-7cf7-46b6-8ab1-e477fc8478c0?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -562,7 +515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:06:06 GMT + - Fri, 26 Nov 2021 03:27:08 GMT expires: - '-1' pragma: @@ -594,9 +547,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/a8708aa8-b345-455c-9b92-353000add88a?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/ed1f8025-7cf7-46b6-8ab1-e477fc8478c0?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -608,7 +561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:06:37 GMT + - Fri, 26 Nov 2021 03:27:39 GMT expires: - '-1' pragma: @@ -640,9 +593,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/a8708aa8-b345-455c-9b92-353000add88a?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/ed1f8025-7cf7-46b6-8ab1-e477fc8478c0?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -654,7 +607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:07:07 GMT + - Fri, 26 Nov 2021 03:28:09 GMT expires: - '-1' pragma: @@ -686,9 +639,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/a8708aa8-b345-455c-9b92-353000add88a?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/ed1f8025-7cf7-46b6-8ab1-e477fc8478c0?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -700,7 +653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:07:36 GMT + - Fri, 26 Nov 2021 03:28:39 GMT expires: - '-1' pragma: @@ -732,9 +685,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/a8708aa8-b345-455c-9b92-353000add88a?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/ed1f8025-7cf7-46b6-8ab1-e477fc8478c0?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -746,7 +699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:08:08 GMT + - Fri, 26 Nov 2021 03:29:09 GMT expires: - '-1' pragma: @@ -778,9 +731,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/a8708aa8-b345-455c-9b92-353000add88a?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/ed1f8025-7cf7-46b6-8ab1-e477fc8478c0?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -792,7 +745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:08:38 GMT + - Fri, 26 Nov 2021 03:29:41 GMT expires: - '-1' pragma: @@ -824,9 +777,9 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000008/operationStatuses/a8708aa8-b345-455c-9b92-353000add88a?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/ed1f8025-7cf7-46b6-8ab1-e477fc8478c0?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -838,7 +791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:08 GMT + - Fri, 26 Nov 2021 03:30:11 GMT expires: - '-1' pragma: @@ -870,21 +823,21 @@ interactions: ParameterSetName: - --name --performance-level --workspace --resource-group User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET 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":{"status":"Online","maxSizeBytes":263882790666240,"collation":"SQL_Latin1_General_CP1_CI_AS","restorePointInTime":"0001-01-01T00:00:00","creationDate":"2021-11-03T12:08:49.477Z","storageAccountType":"GRS","sourceDatabaseDeletionDate":"0001-01-01T00:00:00","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":"2021-11-26T03:30:00.347Z","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: - - '604' + - '510' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:08 GMT + - Fri, 26 Nov 2021 03:30:11 GMT expires: - '-1' pragma: @@ -916,12 +869,12 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-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":"2021-11-03T12:01:32.9053101Z","key2":"2021-11-03T12:01:32.9053101Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-03T12:01:32.9053101Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-03T12:01:32.9053101Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-03T12:01:32.7959613Z","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":"2021-11-26T03:23:09.3214577Z","key2":"2021-11-26T03:23:09.3214577Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-26T03:23:09.3214577Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-26T03:23:09.3214577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-26T03:23:09.2120298Z","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 @@ -930,7 +883,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:09:10 GMT + - Fri, 26 Nov 2021 03:30:12 GMT expires: - '-1' pragma: @@ -964,12 +917,12 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -978,7 +931,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:09:11 GMT + - Fri, 26 Nov 2021 03:30:12 GMT expires: - '-1' pragma: @@ -994,7 +947,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' status: code: 200 message: OK @@ -1012,7 +965,7 @@ interactions: ParameterSetName: - --workspace-name --resource-group --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1026,7 +979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:13 GMT + - Fri, 26 Nov 2021 03:30:13 GMT expires: - '-1' pragma: @@ -1059,7 +1012,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-key --storage-endpoint --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1073,7 +1026,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:16 GMT + - Fri, 26 Nov 2021 03:30:15 GMT expires: - '-1' pragma: @@ -1114,7 +1067,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-key --storage-endpoint --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/auditingSettings/default?api-version=2021-06-01 response: @@ -1128,7 +1081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:19 GMT + - Fri, 26 Nov 2021 03:30:16 GMT expires: - '-1' pragma: @@ -1140,7 +1093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1158,7 +1111,7 @@ interactions: ParameterSetName: - --workspace-name --resource-group --name --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1172,7 +1125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:21 GMT + - Fri, 26 Nov 2021 03:30:18 GMT expires: - '-1' pragma: @@ -1205,7 +1158,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1219,7 +1172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:22 GMT + - Fri, 26 Nov 2021 03:30:20 GMT expires: - '-1' pragma: @@ -1252,7 +1205,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1266,7 +1219,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:24 GMT + - Fri, 26 Nov 2021 03:30:21 GMT expires: - '-1' pragma: @@ -1295,12 +1248,12 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-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":"2021-11-03T12:01:32.9053101Z","key2":"2021-11-03T12:01:32.9053101Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-03T12:01:32.9053101Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-03T12:01:32.9053101Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-03T12:01:32.7959613Z","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":"2021-11-26T03:23:09.3214577Z","key2":"2021-11-26T03:23:09.3214577Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-26T03:23:09.3214577Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-26T03:23:09.3214577Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-26T03:23:09.2120298Z","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 @@ -1309,7 +1262,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:09:24 GMT + - Fri, 26 Nov 2021 03:30:21 GMT expires: - '-1' pragma: @@ -1342,7 +1295,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1356,7 +1309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:26 GMT + - Fri, 26 Nov 2021 03:30:22 GMT expires: - '-1' pragma: @@ -1387,12 +1340,12 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -1401,7 +1354,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:09:27 GMT + - Fri, 26 Nov 2021 03:30:22 GMT expires: - '-1' pragma: @@ -1417,7 +1370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 200 message: OK @@ -1444,7 +1397,7 @@ interactions: - --resource-group --workspace-name --name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/auditingSettings/default?api-version=2021-06-01 response: @@ -1458,7 +1411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:29 GMT + - Fri, 26 Nov 2021 03:30:24 GMT expires: - '-1' pragma: @@ -1474,7 +1427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -1492,7 +1445,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1506,7 +1459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:31 GMT + - Fri, 26 Nov 2021 03:30:24 GMT expires: - '-1' pragma: @@ -1545,7 +1498,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/auditingSettings/default?api-version=2021-06-01 response: @@ -1559,7 +1512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:33 GMT + - Fri, 26 Nov 2021 03:30:25 GMT expires: - '-1' pragma: @@ -1575,7 +1528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 200 message: OK @@ -1593,12 +1546,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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":"2021-11-03T12:01:23Z"},"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":"2021-11-26T03:23:01Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1607,7 +1560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:09:35 GMT + - Fri, 26 Nov 2021 03:30:26 GMT expires: - '-1' pragma: @@ -1640,22 +1593,22 @@ interactions: ParameterSetName: - --resource-group --workspace-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-loganalytics/11.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-loganalytics/11.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003?api-version=2020-10-01 response: body: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"39700a7b-0f2f-4141-8589-0db60be05d94\",\r\n \"provisioningState\": \"Creating\",\r\n + \"9eb5f4b0-79db-4b21-839d-c2675cbf6bd1\",\r\n \"provisioningState\": \"Creating\",\r\n \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\": - \"Wed, 03 Nov 2021 12:09:41 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Fri, 26 Nov 2021 03:30:32 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Wed, 03 Nov 2021 16:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Fri, 26 Nov 2021 21:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Wed, 03 Nov 2021 12:09:41 GMT\",\r\n - \ \"modifiedDate\": \"Wed, 03 Nov 2021 12:09:41 GMT\"\r\n },\r\n \"id\": + \"Enabled\",\r\n \"createdDate\": \"Fri, 26 Nov 2021 03:30:32 GMT\",\r\n + \ \"modifiedDate\": \"Fri, 26 Nov 2021 03:30:32 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001/providers/microsoft.operationalinsights/workspaces/laws000003\",\r\n \ \"name\": \"laws000003\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \ \"location\": \"westus\"\r\n}" @@ -1667,7 +1620,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:09:41 GMT + - Fri, 26 Nov 2021 03:30:32 GMT pragma: - no-cache server: @@ -1678,7 +1631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET - ASP.NET @@ -1699,22 +1652,22 @@ interactions: ParameterSetName: - --resource-group --workspace-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-loganalytics/11.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-loganalytics/11.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003?api-version=2020-10-01 response: body: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"39700a7b-0f2f-4141-8589-0db60be05d94\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"9eb5f4b0-79db-4b21-839d-c2675cbf6bd1\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\": - \"Wed, 03 Nov 2021 12:09:41 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Fri, 26 Nov 2021 03:30:32 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Wed, 03 Nov 2021 16:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Fri, 26 Nov 2021 21:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Wed, 03 Nov 2021 12:09:41 GMT\",\r\n - \ \"modifiedDate\": \"Wed, 03 Nov 2021 12:09:41 GMT\"\r\n },\r\n \"id\": + \"Enabled\",\r\n \"createdDate\": \"Fri, 26 Nov 2021 03:30:32 GMT\",\r\n + \ \"modifiedDate\": \"Fri, 26 Nov 2021 03:30:32 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001/providers/microsoft.operationalinsights/workspaces/laws000003\",\r\n \ \"name\": \"laws000003\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \ \"location\": \"westus\"\r\n}" @@ -1726,7 +1679,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:10:12 GMT + - Fri, 26 Nov 2021 03:31:02 GMT pragma: - no-cache server: @@ -1760,7 +1713,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1774,7 +1727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:14 GMT + - Fri, 26 Nov 2021 03:31:04 GMT expires: - '-1' pragma: @@ -1806,7 +1759,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1820,7 +1773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:17 GMT + - Fri, 26 Nov 2021 03:31:05 GMT expires: - '-1' pragma: @@ -1857,7 +1810,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (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/providers/microsoft.insights/diagnosticSettings/SQLSecurityAuditEvents_LogAnalytics?api-version=2017-05-01-preview response: @@ -1871,7 +1824,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:25 GMT + - Fri, 26 Nov 2021 03:32:05 GMT expires: - '-1' pragma: @@ -1905,7 +1858,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1919,7 +1872,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:25 GMT + - Fri, 26 Nov 2021 03:32:05 GMT expires: - '-1' pragma: @@ -1949,12 +1902,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -1963,7 +1916,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:10:27 GMT + - Fri, 26 Nov 2021 03:32:06 GMT expires: - '-1' pragma: @@ -1979,7 +1932,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11997' status: code: 200 message: OK @@ -2005,7 +1958,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/auditingSettings/default?api-version=2021-06-01 response: @@ -2019,7 +1972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:30 GMT + - Fri, 26 Nov 2021 03:32:08 GMT expires: - '-1' pragma: @@ -2049,7 +2002,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2063,7 +2016,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:32 GMT + - Fri, 26 Nov 2021 03:32:10 GMT expires: - '-1' pragma: @@ -2095,7 +2048,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2109,7 +2062,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:35 GMT + - Fri, 26 Nov 2021 03:32:11 GMT expires: - '-1' pragma: @@ -2141,7 +2094,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2155,7 +2108,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:37 GMT + - Fri, 26 Nov 2021 03:32:12 GMT expires: - '-1' pragma: @@ -2187,7 +2140,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2201,7 +2154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:41 GMT + - Fri, 26 Nov 2021 03:32:14 GMT expires: - '-1' pragma: @@ -2235,7 +2188,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2247,7 +2200,7 @@ interactions: content-length: - '0' date: - - Wed, 03 Nov 2021 12:10:45 GMT + - Fri, 26 Nov 2021 03:32:18 GMT expires: - '-1' pragma: @@ -2277,7 +2230,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2291,7 +2244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:46 GMT + - Fri, 26 Nov 2021 03:32:18 GMT expires: - '-1' pragma: @@ -2321,12 +2274,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -2335,7 +2288,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:10:47 GMT + - Fri, 26 Nov 2021 03:32:19 GMT expires: - '-1' pragma: @@ -2377,7 +2330,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/auditingSettings/default?api-version=2021-06-01 response: @@ -2391,7 +2344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:54 GMT + - Fri, 26 Nov 2021 03:32:21 GMT expires: - '-1' pragma: @@ -2407,7 +2360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -2425,7 +2378,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2439,7 +2392,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:10:57 GMT + - Fri, 26 Nov 2021 03:32:23 GMT expires: - '-1' pragma: @@ -2475,13 +2428,13 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006?api-version=2021-06-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":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000006","createdAt":"2021-11-03T12:11:04.24Z","updatedAt":"2021-11-03T12:11:04.24Z","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":"2021-11-26T03:32:28.08Z","updatedAt":"2021-11-26T03:32:28.08Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache @@ -2490,7 +2443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:11:04 GMT + - Fri, 26 Nov 2021 03:32:28 GMT expires: - '-1' pragma: @@ -2527,13 +2480,13 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006?api-version=2021-06-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":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000006","createdAt":"2021-11-03T12:11:04.24Z","updatedAt":"2021-11-03T12:11:04.24Z","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":"2021-11-26T03:32:28.08Z","updatedAt":"2021-11-26T03:32:28.08Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache @@ -2542,7 +2495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:11:35 GMT + - Fri, 26 Nov 2021 03:32:59 GMT expires: - '-1' pragma: @@ -2577,13 +2530,13 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006?api-version=2021-06-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":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000006","createdAt":"2021-11-03T12:11:04.24Z","updatedAt":"2021-11-03T12:11:51.503Z","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":"2021-11-26T03:32:28.08Z","updatedAt":"2021-11-26T03:33:15.507Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache @@ -2592,7 +2545,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:06 GMT + - Fri, 26 Nov 2021 03:33:29 GMT expires: - '-1' pragma: @@ -2627,13 +2580,13 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000006?api-version=2021-06-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":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000006","createdAt":"2021-11-03T12:11:04.24Z","updatedAt":"2021-11-03T12:11:51.503Z","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":"2021-11-26T03:32:28.08Z","updatedAt":"2021-11-26T03:33:15.507Z","serviceBusEndpoint":"https://ehnamespace000006.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache @@ -2642,7 +2595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:06 GMT + - Fri, 26 Nov 2021 03:33:29 GMT expires: - '-1' pragma: @@ -2681,13 +2634,13 @@ interactions: ParameterSetName: - --resource-group -n --namespace-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-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=2021-06-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":"2021-11-03T12:12:10.347Z","updatedAt":"2021-11-03T12:12:10.517Z","partitionIds":["0","1","2","3"]}}' + US","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2021-11-26T03:33:32.133Z","updatedAt":"2021-11-26T03:33:32.347Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache @@ -2696,7 +2649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:10 GMT + - Fri, 26 Nov 2021 03:33:32 GMT expires: - '-1' pragma: @@ -2715,7 +2668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -2737,7 +2690,7 @@ interactions: ParameterSetName: - --resource-group -n --namespace-name --rights User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-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=2021-06-01-preview response: @@ -2752,16 +2705,16 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:18 GMT + - Fri, 26 Nov 2021 03:33:38 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: @@ -2771,7 +2724,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -2790,7 +2743,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2804,7 +2757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:21 GMT + - Fri, 26 Nov 2021 03:33:40 GMT expires: - '-1' pragma: @@ -2837,7 +2790,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2851,7 +2804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:23 GMT + - Fri, 26 Nov 2021 03:33:42 GMT expires: - '-1' pragma: @@ -2890,7 +2843,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (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/providers/microsoft.insights/diagnosticSettings/SQLSecurityAuditEvents_EventHub?api-version=2017-05-01-preview response: @@ -2904,7 +2857,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:32 GMT + - Fri, 26 Nov 2021 03:33:49 GMT expires: - '-1' pragma: @@ -2939,7 +2892,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2953,7 +2906,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:33 GMT + - Fri, 26 Nov 2021 03:33:49 GMT expires: - '-1' pragma: @@ -2984,12 +2937,12 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -2998,7 +2951,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:12:35 GMT + - Fri, 26 Nov 2021 03:33:50 GMT expires: - '-1' pragma: @@ -3041,7 +2994,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/auditingSettings/default?api-version=2021-06-01 response: @@ -3055,7 +3008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:38 GMT + - Fri, 26 Nov 2021 03:33:52 GMT expires: - '-1' pragma: @@ -3071,7 +3024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -3089,7 +3042,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -3103,7 +3056,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:40 GMT + - Fri, 26 Nov 2021 03:33:52 GMT expires: - '-1' pragma: @@ -3135,7 +3088,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -3149,7 +3102,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:42 GMT + - Fri, 26 Nov 2021 03:33:54 GMT expires: - '-1' pragma: @@ -3182,7 +3135,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -3196,7 +3149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:45 GMT + - Fri, 26 Nov 2021 03:33:56 GMT expires: - '-1' pragma: @@ -3229,7 +3182,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -3243,7 +3196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:48 GMT + - Fri, 26 Nov 2021 03:33:58 GMT expires: - '-1' pragma: @@ -3278,7 +3231,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -3290,7 +3243,7 @@ interactions: content-length: - '0' date: - - Wed, 03 Nov 2021 12:12:53 GMT + - Fri, 26 Nov 2021 03:34:01 GMT expires: - '-1' pragma: @@ -3302,7 +3255,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK @@ -3321,7 +3274,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -3335,7 +3288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:54 GMT + - Fri, 26 Nov 2021 03:34:02 GMT expires: - '-1' pragma: @@ -3366,12 +3319,12 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:01:32.9053101Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:23:09.3214577Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -3380,7 +3333,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:12:56 GMT + - Fri, 26 Nov 2021 03:34:03 GMT expires: - '-1' pragma: @@ -3396,7 +3349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 200 message: OK @@ -3423,7 +3376,7 @@ interactions: - --resource-group --workspace-name --name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/auditingSettings/default?api-version=2021-06-01 response: @@ -3437,7 +3390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:12:58 GMT + - Fri, 26 Nov 2021 03:34:05 GMT expires: - '-1' pragma: @@ -3453,7 +3406,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -3471,7 +3424,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -3485,7 +3438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:13:00 GMT + - Fri, 26 Nov 2021 03:34:07 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_ws_audit_policy_logentry_eventhub.yaml b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_ws_audit_policy_logentry_eventhub.yaml index 66590867744..88682e0014f 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_ws_audit_policy_logentry_eventhub.yaml +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_sql_ws_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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007?api-version=2021-06-01 response: body: - string: '{"properties":{"defaultDataLakeStorage":{"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-22e41d9a-38e9-4cb3-bc5d-ed9c5b0f9116","privateEndpointConnections":[],"workspaceUID":"e6e97c8d-f84d-4292-aac6-11ff0aa83b6b","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"7aa9e238-0376-477f-a085-4aa36420339c"}}' + string: '{"properties":{"defaultDataLakeStorage":{"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-2c76b6de-53d8-4a60-959b-bec3a67eaff1","privateEndpointConnections":[],"workspaceUID":"2f750530-04e7-45ba-91aa-87e1ffc46da2","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"899b4f7d-c6cd-4bbe-b541-59f246c96d24"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c07f63a9-244a-43d5-a3ed-f70d9d553e5d?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/edf32763-2b94-452a-b3b0-155806b7a48d?api-version=2021-06-01 cache-control: - no-cache content-length: @@ -37,7 +37,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:18:31 GMT + - Fri, 26 Nov 2021 03:12:37 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c07f63a9-244a-43d5-a3ed-f70d9d553e5d?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/edf32763-2b94-452a-b3b0-155806b7a48d?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:19:02 GMT + - Fri, 26 Nov 2021 03:13:07 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c07f63a9-244a-43d5-a3ed-f70d9d553e5d?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/edf32763-2b94-452a-b3b0-155806b7a48d?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:19:34 GMT + - Fri, 26 Nov 2021 03:13:38 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c07f63a9-244a-43d5-a3ed-f70d9d553e5d?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/edf32763-2b94-452a-b3b0-155806b7a48d?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -176,7 +176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:20:05 GMT + - Fri, 26 Nov 2021 03:14:08 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c07f63a9-244a-43d5-a3ed-f70d9d553e5d?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/edf32763-2b94-452a-b3b0-155806b7a48d?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -223,7 +223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:20:36 GMT + - Fri, 26 Nov 2021 03:14:38 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.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c07f63a9-244a-43d5-a3ed-f70d9d553e5d?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/edf32763-2b94-452a-b3b0-155806b7a48d?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -270,7 +270,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:21:06 GMT + - Fri, 26 Nov 2021 03:15:08 GMT expires: - '-1' pragma: @@ -303,9 +303,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c07f63a9-244a-43d5-a3ed-f70d9d553e5d?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/edf32763-2b94-452a-b3b0-155806b7a48d?api-version=2021-06-01 response: body: string: '{"status":"InProgress"}' @@ -317,7 +317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:21:39 GMT + - Fri, 26 Nov 2021 03:15:39 GMT expires: - '-1' pragma: @@ -350,9 +350,9 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/c07f63a9-244a-43d5-a3ed-f70d9d553e5d?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/edf32763-2b94-452a-b3b0-155806b7a48d?api-version=2021-06-01 response: body: string: '{"status":"Succeeded"}' @@ -364,7 +364,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:10 GMT + - Fri, 26 Nov 2021 03:16:09 GMT expires: - '-1' pragma: @@ -397,12 +397,12 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-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":{"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-22e41d9a-38e9-4cb3-bc5d-ed9c5b0f9116","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"e6e97c8d-f84d-4292-aac6-11ff0aa83b6b","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"7aa9e238-0376-477f-a085-4aa36420339c"}}' + string: '{"properties":{"defaultDataLakeStorage":{"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-2c76b6de-53d8-4a60-959b-bec3a67eaff1","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"2f750530-04e7-45ba-91aa-87e1ffc46da2","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"52379807-94ed-417a-9a37-b7751e3fb688"},"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":"899b4f7d-c6cd-4bbe-b541-59f246c96d24"}}' headers: cache-control: - no-cache @@ -411,7 +411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:10 GMT + - Fri, 26 Nov 2021 03:16:09 GMT expires: - '-1' pragma: @@ -443,12 +443,12 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-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":"2021-11-03T12:17:52.0368369Z","key2":"2021-11-03T12:17:52.0368369Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-03T12:17:52.0368369Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-03T12:17:52.0368369Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-03T12:17:51.9118153Z","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":"2021-11-26T03:12:00.0960697Z","key2":"2021-11-26T03:12:00.0960697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-26T03:12:00.0960697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-26T03:12:00.0960697Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-26T03:11:59.9710689Z","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 @@ -457,7 +457,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:22:12 GMT + - Fri, 26 Nov 2021 03:16:11 GMT expires: - '-1' pragma: @@ -491,12 +491,12 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -505,7 +505,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:22:13 GMT + - Fri, 26 Nov 2021 03:16:11 GMT expires: - '-1' pragma: @@ -539,7 +539,7 @@ interactions: ParameterSetName: - --workspace-name --resource-group --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapname?api-version=2021-06-01 response: @@ -553,7 +553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:15 GMT + - Fri, 26 Nov 2021 03:16:13 GMT expires: - '-1' pragma: @@ -586,7 +586,7 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-key --storage-endpoint --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapname?api-version=2021-06-01 response: @@ -600,7 +600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:17 GMT + - Fri, 26 Nov 2021 03:16:14 GMT expires: - '-1' pragma: @@ -641,7 +641,7 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-key --storage-endpoint --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007/auditingSettings/bapname?api-version=2021-06-01 response: @@ -653,17 +653,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/clitest000007/operationStatuses/sql07ftr-61aa9fb3-df9f-49a9-b5db-7b76b7fe41e8?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-b951f18e-fdf7-40c6-8f3e-4ed79698eca9?api-version=2021-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Nov 2021 12:22:20 GMT + - Fri, 26 Nov 2021 03:16:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-61aa9fb3-df9f-49a9-b5db-7b76b7fe41e8?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-b951f18e-fdf7-40c6-8f3e-4ed79698eca9?api-version=2021-06-01 pragma: - no-cache retryafter: @@ -675,7 +675,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 202 message: Accepted @@ -694,21 +694,21 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-key --storage-endpoint --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-61aa9fb3-df9f-49a9-b5db-7b76b7fe41e8?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/sql07ftr-b951f18e-fdf7-40c6-8f3e-4ed79698eca9?api-version=2021-06-01 response: body: - string: '{"name":"61aa9fb3-df9f-49a9-b5db-7b76b7fe41e8","status":"Succeeded","startTime":"2021-11-03T12:22:21.113Z"}' + string: '{"name":"b951f18e-fdf7-40c6-8f3e-4ed79698eca9","status":"Succeeded","startTime":"2021-11-26T03:16:16.49Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:50 GMT + - Fri, 26 Nov 2021 03:16:46 GMT expires: - '-1' pragma: @@ -741,7 +741,7 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-key --storage-endpoint --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapname?api-version=2021-06-01 response: @@ -755,7 +755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:51 GMT + - Fri, 26 Nov 2021 03:16:46 GMT expires: - '-1' pragma: @@ -787,7 +787,7 @@ interactions: ParameterSetName: - --workspace-name --resource-group --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapname?api-version=2021-06-01 response: @@ -801,7 +801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:53 GMT + - Fri, 26 Nov 2021 03:16:48 GMT expires: - '-1' pragma: @@ -834,7 +834,7 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -848,7 +848,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:56 GMT + - Fri, 26 Nov 2021 03:16:49 GMT expires: - '-1' pragma: @@ -881,7 +881,7 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -895,7 +895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:57 GMT + - Fri, 26 Nov 2021 03:16:50 GMT expires: - '-1' pragma: @@ -924,12 +924,12 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-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":"2021-11-03T12:17:52.0368369Z","key2":"2021-11-03T12:17:52.0368369Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-03T12:17:52.0368369Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-03T12:17:52.0368369Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-03T12:17:51.9118153Z","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":"2021-11-26T03:12:00.0960697Z","key2":"2021-11-26T03:12:00.0960697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-26T03:12:00.0960697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-26T03:12:00.0960697Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-26T03:11:59.9710689Z","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 @@ -938,7 +938,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:22:58 GMT + - Fri, 26 Nov 2021 03:16:51 GMT expires: - '-1' pragma: @@ -971,7 +971,7 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -985,7 +985,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:22:59 GMT + - Fri, 26 Nov 2021 03:16:51 GMT expires: - '-1' pragma: @@ -1016,12 +1016,12 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -1030,7 +1030,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:23:00 GMT + - Fri, 26 Nov 2021 03:16:52 GMT expires: - '-1' pragma: @@ -1073,7 +1073,7 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -1085,17 +1085,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/clitest000007/operationStatuses/sql07ftr-7256643f-7d32-485d-91e7-4b1c3415246e?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-bed7e51f-5c4e-42a2-a221-6e5f52379941?api-version=2021-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Nov 2021 12:23:03 GMT + - Fri, 26 Nov 2021 03:16:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-7256643f-7d32-485d-91e7-4b1c3415246e?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-bed7e51f-5c4e-42a2-a221-6e5f52379941?api-version=2021-06-01 pragma: - no-cache retryafter: @@ -1126,21 +1126,21 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-7256643f-7d32-485d-91e7-4b1c3415246e?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/sql07ftr-bed7e51f-5c4e-42a2-a221-6e5f52379941?api-version=2021-06-01 response: body: - string: '{"name":"7256643f-7d32-485d-91e7-4b1c3415246e","status":"Succeeded","startTime":"2021-11-03T12:23:03.55Z"}' + string: '{"name":"bed7e51f-5c4e-42a2-a221-6e5f52379941","status":"Succeeded","startTime":"2021-11-26T03:16:53.933Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:23:33 GMT + - Fri, 26 Nov 2021 03:17:24 GMT expires: - '-1' pragma: @@ -1173,7 +1173,7 @@ interactions: - --resource-group --workspace-name --state --bsts --storage-account --retention-days --actions --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -1187,7 +1187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:23:34 GMT + - Fri, 26 Nov 2021 03:17:24 GMT expires: - '-1' pragma: @@ -1219,7 +1219,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -1233,7 +1233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:23:36 GMT + - Fri, 26 Nov 2021 03:17:26 GMT expires: - '-1' pragma: @@ -1272,7 +1272,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -1284,17 +1284,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/clitest000007/operationStatuses/sql07ftr-47ad4122-85a7-4452-b174-5ad880bca723?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-3709772a-2da2-406b-b45d-327efdef5681?api-version=2021-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Nov 2021 12:23:39 GMT + - Fri, 26 Nov 2021 03:17:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-47ad4122-85a7-4452-b174-5ad880bca723?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-3709772a-2da2-406b-b45d-327efdef5681?api-version=2021-06-01 pragma: - no-cache retryafter: @@ -1324,21 +1324,21 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-47ad4122-85a7-4452-b174-5ad880bca723?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/sql07ftr-3709772a-2da2-406b-b45d-327efdef5681?api-version=2021-06-01 response: body: - string: '{"name":"47ad4122-85a7-4452-b174-5ad880bca723","status":"Succeeded","startTime":"2021-11-03T12:23:39.693Z"}' + string: '{"name":"3709772a-2da2-406b-b45d-327efdef5681","status":"Succeeded","startTime":"2021-11-26T03:17:27.73Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:24:09 GMT + - Fri, 26 Nov 2021 03:17:57 GMT expires: - '-1' pragma: @@ -1370,7 +1370,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -1384,7 +1384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:24:09 GMT + - Fri, 26 Nov 2021 03:17:58 GMT expires: - '-1' pragma: @@ -1416,12 +1416,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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":"2021-11-03T12:17:42Z"},"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":"2021-11-26T03:11:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1430,7 +1430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:24:11 GMT + - Fri, 26 Nov 2021 03:17:58 GMT expires: - '-1' pragma: @@ -1463,22 +1463,22 @@ interactions: ParameterSetName: - --resource-group --workspace-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-loganalytics/11.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-loganalytics/11.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003?api-version=2020-10-01 response: body: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"ebfe5ca4-d623-47ed-8676-03527a8c40d5\",\r\n \"provisioningState\": \"Creating\",\r\n + \"911fe596-5935-4383-9e3b-f49b3ec5f20a\",\r\n \"provisioningState\": \"Creating\",\r\n \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\": - \"Wed, 03 Nov 2021 12:24:18 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Fri, 26 Nov 2021 03:18:04 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 04 Nov 2021 06:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Fri, 26 Nov 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Wed, 03 Nov 2021 12:24:18 GMT\",\r\n - \ \"modifiedDate\": \"Wed, 03 Nov 2021 12:24:18 GMT\"\r\n },\r\n \"id\": + \"Enabled\",\r\n \"createdDate\": \"Fri, 26 Nov 2021 03:18:04 GMT\",\r\n + \ \"modifiedDate\": \"Fri, 26 Nov 2021 03:18:04 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001/providers/microsoft.operationalinsights/workspaces/laws000003\",\r\n \ \"name\": \"laws000003\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \ \"location\": \"westus\"\r\n}" @@ -1490,7 +1490,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:24:18 GMT + - Fri, 26 Nov 2021 03:18:05 GMT pragma: - no-cache server: @@ -1522,22 +1522,22 @@ interactions: ParameterSetName: - --resource-group --workspace-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-loganalytics/11.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-loganalytics/11.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001/providers/Microsoft.OperationalInsights/workspaces/laws000003?api-version=2020-10-01 response: body: string: "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": - \"ebfe5ca4-d623-47ed-8676-03527a8c40d5\",\r\n \"provisioningState\": \"Succeeded\",\r\n + \"911fe596-5935-4383-9e3b-f49b3ec5f20a\",\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"sku\": {\r\n \"name\": \"pergb2018\",\r\n \"lastSkuUpdate\": - \"Wed, 03 Nov 2021 12:24:18 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n + \"Fri, 26 Nov 2021 03:18:04 GMT\"\r\n },\r\n \"retentionInDays\": 30,\r\n \ \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \ \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \ \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": - \"Thu, 04 Nov 2021 06:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n + \"Fri, 26 Nov 2021 23:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n \ },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": - \"Enabled\",\r\n \"createdDate\": \"Wed, 03 Nov 2021 12:24:18 GMT\",\r\n - \ \"modifiedDate\": \"Wed, 03 Nov 2021 12:24:20 GMT\"\r\n },\r\n \"id\": + \"Enabled\",\r\n \"createdDate\": \"Fri, 26 Nov 2021 03:18:04 GMT\",\r\n + \ \"modifiedDate\": \"Fri, 26 Nov 2021 03:18:04 GMT\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/synapse-cli000001/providers/microsoft.operationalinsights/workspaces/laws000003\",\r\n \ \"name\": \"laws000003\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \ \"location\": \"westus\"\r\n}" @@ -1549,7 +1549,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:24:49 GMT + - Fri, 26 Nov 2021 03:18:35 GMT pragma: - no-cache server: @@ -1583,7 +1583,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -1597,7 +1597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:24:52 GMT + - Fri, 26 Nov 2021 03:18:36 GMT expires: - '-1' pragma: @@ -1629,7 +1629,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/providers/microsoft.insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -1643,7 +1643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:24:56 GMT + - Fri, 26 Nov 2021 03:18:38 GMT expires: - '-1' pragma: @@ -1680,7 +1680,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (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/clitest000007/providers/microsoft.insights/diagnosticSettings/SQLSecurityAuditEvents_LogAnalytics?api-version=2017-05-01-preview response: @@ -1694,7 +1694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:25:03 GMT + - Fri, 26 Nov 2021 03:18:42 GMT expires: - '-1' pragma: @@ -1728,7 +1728,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -1742,7 +1742,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:25:05 GMT + - Fri, 26 Nov 2021 03:18:43 GMT expires: - '-1' pragma: @@ -1772,12 +1772,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -1786,7 +1786,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:25:06 GMT + - Fri, 26 Nov 2021 03:18:43 GMT expires: - '-1' pragma: @@ -1828,7 +1828,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -1840,17 +1840,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/clitest000007/operationStatuses/sql07ftr-7020b446-665e-4773-a6b1-d1842ddd7bfd?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-8e9fa9e8-2378-423c-b3b6-2a23f2e56624?api-version=2021-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Nov 2021 12:25:09 GMT + - Fri, 26 Nov 2021 03:18:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-7020b446-665e-4773-a6b1-d1842ddd7bfd?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-8e9fa9e8-2378-423c-b3b6-2a23f2e56624?api-version=2021-06-01 pragma: - no-cache retryafter: @@ -1880,12 +1880,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-7020b446-665e-4773-a6b1-d1842ddd7bfd?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/sql07ftr-8e9fa9e8-2378-423c-b3b6-2a23f2e56624?api-version=2021-06-01 response: body: - string: '{"name":"7020b446-665e-4773-a6b1-d1842ddd7bfd","status":"Succeeded","startTime":"2021-11-03T12:25:09.18Z"}' + string: '{"name":"8e9fa9e8-2378-423c-b3b6-2a23f2e56624","status":"Succeeded","startTime":"2021-11-26T03:18:46.17Z"}' headers: cache-control: - no-cache @@ -1894,7 +1894,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:25:41 GMT + - Fri, 26 Nov 2021 03:19:16 GMT expires: - '-1' pragma: @@ -1926,7 +1926,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --lawri --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -1940,7 +1940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:25:42 GMT + - Fri, 26 Nov 2021 03:19:17 GMT expires: - '-1' pragma: @@ -1972,7 +1972,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -1986,7 +1986,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:25:43 GMT + - Fri, 26 Nov 2021 03:19:16 GMT expires: - '-1' pragma: @@ -2018,7 +2018,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/providers/microsoft.insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -2032,7 +2032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:25:46 GMT + - Fri, 26 Nov 2021 03:19:19 GMT expires: - '-1' pragma: @@ -2064,7 +2064,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -2078,7 +2078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:25:47 GMT + - Fri, 26 Nov 2021 03:19:21 GMT expires: - '-1' pragma: @@ -2110,7 +2110,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/providers/microsoft.insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -2124,7 +2124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:26:01 GMT + - Fri, 26 Nov 2021 03:19:22 GMT expires: - '-1' pragma: @@ -2158,7 +2158,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/providers/microsoft.insights/diagnosticSettings/SQLSecurityAuditEvents_LogAnalytics?api-version=2017-05-01-preview response: @@ -2170,7 +2170,7 @@ interactions: content-length: - '0' date: - - Wed, 03 Nov 2021 12:26:06 GMT + - Fri, 26 Nov 2021 03:19:28 GMT expires: - '-1' pragma: @@ -2182,7 +2182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 200 message: OK @@ -2200,7 +2200,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2214,7 +2214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:26:07 GMT + - Fri, 26 Nov 2021 03:19:28 GMT expires: - '-1' pragma: @@ -2244,12 +2244,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -2258,7 +2258,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:26:08 GMT + - Fri, 26 Nov 2021 03:19:28 GMT expires: - '-1' pragma: @@ -2274,7 +2274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 200 message: OK @@ -2300,7 +2300,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -2312,17 +2312,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/clitest000007/operationStatuses/sql07ftr-6e10108b-408b-4515-b435-cb3d86bec74c?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-8d2f2405-6841-4580-a0b6-a42b3c8dce88?api-version=2021-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Nov 2021 12:26:11 GMT + - Fri, 26 Nov 2021 03:19:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-6e10108b-408b-4515-b435-cb3d86bec74c?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-8d2f2405-6841-4580-a0b6-a42b3c8dce88?api-version=2021-06-01 pragma: - no-cache retryafter: @@ -2334,7 +2334,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -2352,21 +2352,21 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-6e10108b-408b-4515-b435-cb3d86bec74c?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/sql07ftr-8d2f2405-6841-4580-a0b6-a42b3c8dce88?api-version=2021-06-01 response: body: - string: '{"name":"6e10108b-408b-4515-b435-cb3d86bec74c","status":"Succeeded","startTime":"2021-11-03T12:26:11.09Z"}' + string: '{"name":"8d2f2405-6841-4580-a0b6-a42b3c8dce88","status":"Succeeded","startTime":"2021-11-26T03:19:30.5Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '105' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:26:41 GMT + - Fri, 26 Nov 2021 03:20:01 GMT expires: - '-1' pragma: @@ -2398,7 +2398,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --lats --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -2412,7 +2412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:26:41 GMT + - Fri, 26 Nov 2021 03:20:01 GMT expires: - '-1' pragma: @@ -2444,7 +2444,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapname?api-version=2021-06-01 response: @@ -2458,7 +2458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:26:43 GMT + - Fri, 26 Nov 2021 03:20:03 GMT expires: - '-1' pragma: @@ -2494,31 +2494,31 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000005?api-version=2021-06-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/ehnamespace000005","name":"ehnamespace000005","type":"Microsoft.EventHub/Namespaces","location":"East - US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000005","createdAt":"2021-11-03T12:26:49.617Z","updatedAt":"2021-11-03T12:26:49.617Z","serviceBusEndpoint":"https://ehnamespace000005.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:ehnamespace000005","createdAt":"2021-11-26T03:20:07.51Z","updatedAt":"2021-11-26T03:20:07.51Z","serviceBusEndpoint":"https://ehnamespace000005.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '729' + - '727' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:26:50 GMT + - Fri, 26 Nov 2021 03:20:07 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: @@ -2546,22 +2546,22 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000005?api-version=2021-06-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/ehnamespace000005","name":"ehnamespace000005","type":"Microsoft.EventHub/Namespaces","location":"East - US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000005","createdAt":"2021-11-03T12:26:49.617Z","updatedAt":"2021-11-03T12:26:49.617Z","serviceBusEndpoint":"https://ehnamespace000005.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:ehnamespace000005","createdAt":"2021-11-26T03:20:07.51Z","updatedAt":"2021-11-26T03:20:07.51Z","serviceBusEndpoint":"https://ehnamespace000005.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '729' + - '727' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:27:20 GMT + - Fri, 26 Nov 2021 03:20:39 GMT expires: - '-1' pragma: @@ -2596,13 +2596,13 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000005?api-version=2021-06-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/ehnamespace000005","name":"ehnamespace000005","type":"Microsoft.EventHub/Namespaces","location":"East - US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000005","createdAt":"2021-11-03T12:26:49.617Z","updatedAt":"2021-11-03T12:27:42.05Z","serviceBusEndpoint":"https://ehnamespace000005.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:ehnamespace000005","createdAt":"2021-11-26T03:20:07.51Z","updatedAt":"2021-11-26T03:20:55.557Z","serviceBusEndpoint":"https://ehnamespace000005.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache @@ -2611,7 +2611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:27:51 GMT + - Fri, 26 Nov 2021 03:21:09 GMT expires: - '-1' pragma: @@ -2646,13 +2646,13 @@ interactions: ParameterSetName: - --resource-group -n --location User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000005?api-version=2021-06-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/ehnamespace000005","name":"ehnamespace000005","type":"Microsoft.EventHub/Namespaces","location":"East - US","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"051ddeca-1ed6-4d8b-ba6f-1ff561e5f3b3:ehnamespace000005","createdAt":"2021-11-03T12:26:49.617Z","updatedAt":"2021-11-03T12:27:42.05Z","serviceBusEndpoint":"https://ehnamespace000005.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:ehnamespace000005","createdAt":"2021-11-26T03:20:07.51Z","updatedAt":"2021-11-26T03:20:55.557Z","serviceBusEndpoint":"https://ehnamespace000005.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache @@ -2661,7 +2661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:27:52 GMT + - Fri, 26 Nov 2021 03:21:10 GMT expires: - '-1' pragma: @@ -2700,22 +2700,22 @@ interactions: ParameterSetName: - --resource-group -n --namespace-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000005/eventhubs/ehsrv000004?api-version=2021-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000005/eventhubs/ehsrv000004","name":"ehsrv000004","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"East - US","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2021-11-03T12:27:55.423Z","updatedAt":"2021-11-03T12:27:55.663Z","partitionIds":["0","1","2","3"]}}' + US","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2021-11-26T03:21:12.633Z","updatedAt":"2021-11-26T03:21:12.82Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache content-length: - - '474' + - '473' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:27:55 GMT + - Fri, 26 Nov 2021 03:21:12 GMT expires: - '-1' pragma: @@ -2734,7 +2734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -2756,7 +2756,7 @@ interactions: ParameterSetName: - --resource-group -n --namespace-name --rights User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.EventHub/namespaces/ehnamespace000005/authorizationRules/ehauthruledb000006?api-version=2021-06-01-preview response: @@ -2771,7 +2771,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:28:04 GMT + - Fri, 26 Nov 2021 03:21:20 GMT expires: - '-1' pragma: @@ -2790,7 +2790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2809,7 +2809,7 @@ interactions: - --resource-group --workspace-name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -2823,7 +2823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:28:05 GMT + - Fri, 26 Nov 2021 03:21:21 GMT expires: - '-1' pragma: @@ -2856,7 +2856,7 @@ interactions: - --resource-group --workspace-name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/providers/microsoft.insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -2870,7 +2870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:28:09 GMT + - Fri, 26 Nov 2021 03:21:22 GMT expires: - '-1' pragma: @@ -2909,7 +2909,7 @@ interactions: - --resource-group --workspace-name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (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/clitest000007/providers/microsoft.insights/diagnosticSettings/SQLSecurityAuditEvents_EventHub?api-version=2017-05-01-preview response: @@ -2923,7 +2923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:28:17 GMT + - Fri, 26 Nov 2021 03:21:29 GMT expires: - '-1' pragma: @@ -2939,7 +2939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' status: code: 200 message: OK @@ -2958,7 +2958,7 @@ interactions: - --resource-group --workspace-name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -2972,7 +2972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:28:18 GMT + - Fri, 26 Nov 2021 03:21:30 GMT expires: - '-1' pragma: @@ -3003,12 +3003,12 @@ interactions: - --resource-group --workspace-name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -3017,7 +3017,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:28:19 GMT + - Fri, 26 Nov 2021 03:21:30 GMT expires: - '-1' pragma: @@ -3033,7 +3033,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' status: code: 200 message: OK @@ -3060,7 +3060,7 @@ interactions: - --resource-group --workspace-name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -3072,17 +3072,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/clitest000007/operationStatuses/sql07ftr-fdbdc83b-61c8-4fda-9f2e-6a4907f46b0e?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-417c7242-503f-407e-b80b-f63703f6282e?api-version=2021-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Nov 2021 12:28:22 GMT + - Fri, 26 Nov 2021 03:21:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-fdbdc83b-61c8-4fda-9f2e-6a4907f46b0e?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-417c7242-503f-407e-b80b-f63703f6282e?api-version=2021-06-01 pragma: - no-cache retryafter: @@ -3094,7 +3094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -3113,21 +3113,21 @@ interactions: - --resource-group --workspace-name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-fdbdc83b-61c8-4fda-9f2e-6a4907f46b0e?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/sql07ftr-417c7242-503f-407e-b80b-f63703f6282e?api-version=2021-06-01 response: body: - string: '{"name":"fdbdc83b-61c8-4fda-9f2e-6a4907f46b0e","status":"Succeeded","startTime":"2021-11-03T12:28:22.343Z"}' + string: '{"name":"417c7242-503f-407e-b80b-f63703f6282e","status":"Succeeded","startTime":"2021-11-26T03:21:33.03Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:28:52 GMT + - Fri, 26 Nov 2021 03:22:03 GMT expires: - '-1' pragma: @@ -3160,7 +3160,7 @@ interactions: - --resource-group --workspace-name --state --event-hub-target-state --ehari --event-hub --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -3174,7 +3174,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:28:52 GMT + - Fri, 26 Nov 2021 03:22:03 GMT expires: - '-1' pragma: @@ -3206,7 +3206,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -3220,7 +3220,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:28:54 GMT + - Fri, 26 Nov 2021 03:22:04 GMT expires: - '-1' pragma: @@ -3252,7 +3252,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/providers/microsoft.insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -3266,7 +3266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:28:57 GMT + - Fri, 26 Nov 2021 03:22:06 GMT expires: - '-1' pragma: @@ -3298,7 +3298,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -3312,7 +3312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:29:00 GMT + - Fri, 26 Nov 2021 03:22:06 GMT expires: - '-1' pragma: @@ -3344,7 +3344,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/providers/microsoft.insights/diagnosticSettings?api-version=2017-05-01-preview response: @@ -3358,7 +3358,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:29:03 GMT + - Fri, 26 Nov 2021 03:22:08 GMT expires: - '-1' pragma: @@ -3392,7 +3392,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-monitor/2.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/providers/microsoft.insights/diagnosticSettings/SQLSecurityAuditEvents_EventHub?api-version=2017-05-01-preview response: @@ -3404,7 +3404,7 @@ interactions: content-length: - '0' date: - - Wed, 03 Nov 2021 12:29:08 GMT + - Fri, 26 Nov 2021 03:22:12 GMT expires: - '-1' pragma: @@ -3416,7 +3416,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -3434,7 +3434,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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: @@ -3448,7 +3448,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:29:09 GMT + - Fri, 26 Nov 2021 03:22:12 GMT expires: - '-1' pragma: @@ -3478,12 +3478,12 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.10 (Windows-10-10.0.19044-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-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-03T12:17:52.0368369Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-26T03:12:00.0960697Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -3492,7 +3492,7 @@ interactions: content-type: - application/json date: - - Wed, 03 Nov 2021 12:29:11 GMT + - Fri, 26 Nov 2021 03:22:13 GMT expires: - '-1' pragma: @@ -3534,7 +3534,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (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/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -3546,17 +3546,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/clitest000007/operationStatuses/sql07ftr-75da0603-f36e-43c3-b26a-493b61c87c85?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-e7817ead-699a-46b0-b27f-5d65eca2963c?api-version=2021-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Nov 2021 12:29:13 GMT + - Fri, 26 Nov 2021 03:22:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-75da0603-f36e-43c3-b26a-493b61c87c85?api-version=2021-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationResults/sql07ftr-e7817ead-699a-46b0-b27f-5d65eca2963c?api-version=2021-06-01 pragma: - no-cache retryafter: @@ -3568,7 +3568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 202 message: Accepted @@ -3586,21 +3586,21 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/sql07ftr-75da0603-f36e-43c3-b26a-493b61c87c85?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/sql07ftr-e7817ead-699a-46b0-b27f-5d65eca2963c?api-version=2021-06-01 response: body: - string: '{"name":"75da0603-f36e-43c3-b26a-493b61c87c85","status":"Succeeded","startTime":"2021-11-03T12:29:13.52Z"}' + string: '{"name":"e7817ead-699a-46b0-b27f-5d65eca2963c","status":"Succeeded","startTime":"2021-11-26T03:22:15.163Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:29:44 GMT + - Fri, 26 Nov 2021 03:22:45 GMT expires: - '-1' pragma: @@ -3632,7 +3632,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --state --event-hub-target-state --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -3646,7 +3646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:29:44 GMT + - Fri, 26 Nov 2021 03:22:45 GMT expires: - '-1' pragma: @@ -3678,7 +3678,7 @@ interactions: ParameterSetName: - --resource-group --workspace-name --blob-auditing-policy-name User-Agent: - - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19043-SP0) + - AZURECLI/2.30.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/auditingSettings/bapn?api-version=2021-06-01 response: @@ -3692,7 +3692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 12:29:46 GMT + - Fri, 26 Nov 2021 03:22:46 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 8d43d13607c..d4f6bff69f4 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 @@ -986,6 +986,122 @@ def test_kusto_pool(self): '--resource-group "{rg}" ' '--workspace-name "{workspace}"') + @ResourceGroupPreparer(name_prefix='synapse-cli', random_name_length=16) + @StorageAccountPreparer(name_prefix='adlsgen2', length=16, location=location, key='storage-account') + def test_kusto_script(self): + self.kwargs.update({ + 'location': 'east us', + 'kustoPool': self.create_random_name(prefix='testkstpool', length=15), + 'database': self.create_random_name(prefix='testdtabase', length=15), + 'scriptName': self.create_random_name(prefix='scriptname', length=15), + 'scriptName2': self.create_random_name(prefix='scriptname2', length=15), + 'fileName': os.path.join(os.path.join(os.path.dirname(__file__), 'assets'), 'kqlScript.kql') + }) + + # create a workspace + self._create_workspace() + + # create firewall rule + self.cmd( + 'az synapse workspace firewall-rule create --resource-group {rg} --name allowAll --workspace-name {workspace} ' + '--start-ip-address 0.0.0.0 --end-ip-address 255.255.255.255', checks=[ + self.check('provisioningState', 'Succeeded') + ] + ) + import time + time.sleep(20) + + # check workspace name + self.cmd('az synapse workspace check-name --name {workspace}', checks=[ + self.check('available', False) + ]) + + self.cmd('az synapse kusto pool create ' + '--name "{kustoPool}" ' + '--location "{location}" ' + '--enable-purge true ' + '--enable-streaming-ingest true ' + '--sku name="Storage optimized" capacity=2 size="Medium" ' + '--resource-group "{rg}" ' + '--workspace-name "{workspace}"', + checks=[ + self.check('name', "{workspace}/{kustoPool}"), + self.check('type', 'Microsoft.Synapse/workspaces/kustoPools'), + self.check('provisioningState', 'Succeeded'), + self.check('location', 'east us', case_sensitive=False), + self.check("sku.name", "Storage optimized"), + self.check('enablePurge', True), + self.check('enableStreamingIngest', True), + ]) + + self.cmd('az synapse kusto database create ' + '--database-name "{database}" ' + '--kusto-pool-name "{kustoPool}" ' + '--read-write-database location="{location}" soft-delete-period="P1D" ' + '--resource-group "{rg}" ' + '--workspace-name "{workspace}"', + checks=[ + self.check('name', "{workspace}/{kustoPool}/{database}"), + self.check('type', 'Microsoft.Synapse/workspaces/kustoPools/Databases'), + self.check('provisioningState', 'Succeeded') + ]) + + # create + self.cmd('az synapse kql-script create ' + '--resource-group "{rg}" ' + '--workspace-name "{workspace}" --file "{fileName}" ' + '--name "{scriptName}"', + checks=[ + self.check("resourceGroup", self.kwargs['rg'], case_sensitive=False), + self.check("name", self.kwargs['scriptName'], case_sensitive=False), + self.check("type", "Microsoft.Synapse/workspaces/kqlscripts", case_sensitive=False), + ]) + + # import + self.cmd('az synapse kql-script import ' + '--resource-group "{rg}" ' + '--workspace-name "{workspace}" ' + '--kusto-pool-name "{kustoPool}" --kusto-database-name "{database}" --file "{fileName}" ' + '--name "{scriptName2}"', + checks=[ + self.check("resourceGroup", self.kwargs['rg'], case_sensitive=False), + self.check("name", self.kwargs['scriptName2'], case_sensitive=False), + self.check("properties.content.currentConnection.poolName", self.kwargs['kustoPool'], + case_sensitive=False), + self.check("properties.content.currentConnection.databaseName", self.kwargs['database'], + case_sensitive=False), + self.check("type", "Microsoft.Synapse/workspaces/kqlscripts", case_sensitive=False), + ]) + + self.cmd('az synapse kql-script show ' + '--workspace-name "{workspace}" ' + '--name "{scriptName}"', + checks=[ + self.check("resourceGroup", self.kwargs['rg'], case_sensitive=False), + self.check("name", self.kwargs['scriptName'], case_sensitive=False), + self.check("type", "Microsoft.Synapse/workspaces/kqlscripts", case_sensitive=False), + ]) + + self.cmd('az synapse kql-script list ' + '--workspace-name "{workspace}" ', + checks=[ + self.check('[0].type', 'Microsoft.Synapse/workspaces/kqlscripts') + ]) + + # export + self.kwargs['output-folder'] = os.getcwd() + self.cmd( + 'az synapse kql-script export --workspace-name {workspace} --name {scriptName} ' + '--output-folder "{output-folder}"') + file_path = os.path.join(self.kwargs['output-folder'], self.kwargs['scriptName'] + '.kql') + self.assertTrue(os.path.isfile(file_path)) + os.remove(file_path) + + # delete + self.cmd('az synapse kql-script delete --workspace-name {workspace} --name {scriptName} --yes') + time.sleep(20) + self.cmd('az synapse kql-script show --workspace-name {workspace} --name {scriptName}', expect_failure=True) + @record_only() @ResourceGroupPreparer(name_prefix='synapse-cli', random_name_length=16) @StorageAccountPreparer(name_prefix='adlsgen2', length=16, location=location, key='storage-account') @@ -1040,7 +1156,7 @@ def test_managed_virtual_network_workspace(self): self.check('managedVirtualNetwork', 'default') ]) - @record_only() + #@record_only() @ResourceGroupPreparer(name_prefix='synapse-cli', random_name_length=16) @StorageAccountPreparer(name_prefix='adlsgen2', length=16, location=location, key='storage-account') def test_spark_pool(self): diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 3a4468fb99b..d235fb75b62 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -8,7 +8,7 @@ azure-cli-core==2.30.0 azure-cli-telemetry==1.0.6 azure-cli==2.30.0 azure-common==1.1.22 -azure-core==1.19.0 +azure-core==1.20.1 azure-cosmos==3.2.0 azure-datalake-store==0.0.49 azure-graphrbac==0.60.0 @@ -89,7 +89,7 @@ azure-multiapi-storage==0.7.0 azure-nspkg==3.0.2 azure-storage-common==1.4.2 azure-synapse-accesscontrol==0.5.0 -azure-synapse-artifacts==0.9.0 +azure-synapse-artifacts==0.10.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 21ad66c3230..3595736ea3b 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -8,7 +8,7 @@ azure-cli-core==2.30.0 azure-cli-telemetry==1.0.6 azure-cli==2.30.0 azure-common==1.1.22 -azure-core==1.19.0 +azure-core==1.20.1 azure-cosmos==3.2.0 azure-datalake-store==0.0.49 azure-graphrbac==0.60.0 @@ -89,7 +89,7 @@ azure-multiapi-storage==0.7.0 azure-nspkg==3.0.2 azure-storage-common==1.4.2 azure-synapse-accesscontrol==0.5.0 -azure-synapse-artifacts==0.9.0 +azure-synapse-artifacts==0.10.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 e08b9daa82d..33d89c62ee1 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -8,7 +8,7 @@ azure-cli-core==2.30.0 azure-cli-telemetry==1.0.6 azure-cli==2.30.0 azure-common==1.1.22 -azure-core==1.19.0 +azure-core==1.20.1 azure-cosmos==3.2.0 azure-datalake-store==0.0.49 azure-graphrbac==0.60.0 @@ -89,7 +89,7 @@ azure-multiapi-storage==0.7.0 azure-nspkg==3.0.2 azure-storage-common==1.4.2 azure-synapse-accesscontrol==0.5.0 -azure-synapse-artifacts==0.9.0 +azure-synapse-artifacts==0.10.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 f9ab06e413d..e60cea9b192 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -133,7 +133,7 @@ 'azure-multiapi-storage~=0.7.0', 'azure-storage-common~=1.4', 'azure-synapse-accesscontrol~=0.5.0', - 'azure-synapse-artifacts~=0.9.0', + 'azure-synapse-artifacts~=0.10.0', 'azure-synapse-managedprivateendpoints~=0.3.0', 'azure-synapse-spark~=0.2.0', 'chardet~=3.0.4',